summaryrefslogtreecommitdiff
path: root/src/lib/libssl/ssl_locl.h
diff options
context:
space:
mode:
authorjsing <>2020-09-15 09:41:24 +0000
committerjsing <>2020-09-15 09:41:24 +0000
commit08007ba8b24a358556376f4720a481deae2dee22 (patch)
tree6681ab3b7505116dd0889b41f69b7cc287d44704 /src/lib/libssl/ssl_locl.h
parentd7f1a6dd6814bc657a1fa9fc9821d8e7f3b65d00 (diff)
downloadopenbsd-08007ba8b24a358556376f4720a481deae2dee22.tar.gz
openbsd-08007ba8b24a358556376f4720a481deae2dee22.tar.bz2
openbsd-08007ba8b24a358556376f4720a481deae2dee22.zip
Mop up the get_ssl_method function pointer.
Now that get_ssl_method is no longer used, we can garbage collect the function pointer and some associated machinery. ok beck@
Diffstat (limited to 'src/lib/libssl/ssl_locl.h')
-rw-r--r--src/lib/libssl/ssl_locl.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib/libssl/ssl_locl.h b/src/lib/libssl/ssl_locl.h
index 540afee004..4ac6b76cd3 100644
--- a/src/lib/libssl/ssl_locl.h
+++ b/src/lib/libssl/ssl_locl.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssl_locl.h,v 1.291 2020/09/13 16:49:05 jsing Exp $ */ 1/* $OpenBSD: ssl_locl.h,v 1.292 2020/09/15 09:41:24 jsing 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 *
@@ -383,8 +383,6 @@ typedef struct ssl_method_internal_st {
383 int peek); 383 int peek);
384 int (*ssl_write_bytes)(SSL *s, int type, const void *buf_, int len); 384 int (*ssl_write_bytes)(SSL *s, int type, const void *buf_, int len);
385 385
386 const struct ssl_method_st *(*get_ssl_method)(int version);
387
388 struct ssl3_enc_method *ssl3_enc; /* Extra SSLv3/TLS stuff */ 386 struct ssl3_enc_method *ssl3_enc; /* Extra SSLv3/TLS stuff */
389} SSL_METHOD_INTERNAL; 387} SSL_METHOD_INTERNAL;
390 388