summaryrefslogtreecommitdiff
path: root/src/lib/libssl/ssl.h
diff options
context:
space:
mode:
authorjsg <>2024-05-27 09:12:32 +0000
committerjsg <>2024-05-27 09:12:32 +0000
commit8d78f6625f014d794fde6e4b4190bb6d7c2410f0 (patch)
treeae8db8e9b30292df8490160fa5cf4f6006583940 /src/lib/libssl/ssl.h
parent09f87a1e448f95c82821ad37370de4fcd8e018e4 (diff)
downloadopenbsd-8d78f6625f014d794fde6e4b4190bb6d7c2410f0.tar.gz
openbsd-8d78f6625f014d794fde6e4b4190bb6d7c2410f0.tar.bz2
openbsd-8d78f6625f014d794fde6e4b4190bb6d7c2410f0.zip
remove unused typedefs with structs that were removed
ENGINE, SSL and SSL_CTX remain even though the structs in the typedefs don't exist as they are used as incomplete types. feedback, ports bulk build and ok tb@
Diffstat (limited to '')
-rw-r--r--src/lib/libssl/ssl.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/lib/libssl/ssl.h b/src/lib/libssl/ssl.h
index 9a5f8d025e..22d4809868 100644
--- a/src/lib/libssl/ssl.h
+++ b/src/lib/libssl/ssl.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssl.h,v 1.236 2024/03/02 11:48:55 tb Exp $ */ 1/* $OpenBSD: ssl.h,v 1.237 2024/05/27 09:12:31 jsg Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -510,11 +510,6 @@ int SSL_CTX_set_num_tickets(SSL_CTX *ctx, size_t num_tickets);
510size_t SSL_CTX_get_num_tickets(const SSL_CTX *ctx); 510size_t SSL_CTX_get_num_tickets(const SSL_CTX *ctx);
511STACK_OF(X509) *SSL_get0_verified_chain(const SSL *s); 511STACK_OF(X509) *SSL_get0_verified_chain(const SSL *s);
512 512
513#ifndef LIBRESSL_INTERNAL
514struct ssl_aead_ctx_st;
515typedef struct ssl_aead_ctx_st SSL_AEAD_CTX;
516#endif
517
518#define SSL_MAX_CERT_LIST_DEFAULT 1024*100 /* 100k max cert list :-) */ 513#define SSL_MAX_CERT_LIST_DEFAULT 1024*100 /* 100k max cert list :-) */
519 514
520#define SSL_SESSION_CACHE_MAX_SIZE_DEFAULT (1024*20) 515#define SSL_SESSION_CACHE_MAX_SIZE_DEFAULT (1024*20)