diff options
author | 2015-09-01 13:38:27 +0000 | |
---|---|---|
committer | 2015-09-01 13:38:27 +0000 | |
commit | 3f38b3212cde555a84fd30e09163576e6a59932c (patch) | |
tree | fcc8afce67847f69125511993112f74608329a43 /lib/libssl/src/ssl/ssl_locl.h | |
parent | Make it always safe to call CBB_cleanup() providing that CBB_init() or (diff) | |
download | wireguard-openbsd-3f38b3212cde555a84fd30e09163576e6a59932c.tar.xz wireguard-openbsd-3f38b3212cde555a84fd30e09163576e6a59932c.zip |
Remove the ssl_prepare_{client,server}hello_tlsext() functions, which are
now nothing more than noops.
ok bcook@ doug@
Diffstat (limited to 'lib/libssl/src/ssl/ssl_locl.h')
-rw-r--r-- | lib/libssl/src/ssl/ssl_locl.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/libssl/src/ssl/ssl_locl.h b/lib/libssl/src/ssl/ssl_locl.h index 098065f3bc0..b7853b24c84 100644 --- a/lib/libssl/src/ssl/ssl_locl.h +++ b/lib/libssl/src/ssl/ssl_locl.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl_locl.h,v 1.101 2015/08/29 17:15:52 doug Exp $ */ +/* $OpenBSD: ssl_locl.h,v 1.102 2015/09/01 13:38:27 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -816,8 +816,6 @@ int ssl_parse_clienthello_tlsext(SSL *s, unsigned char **data, unsigned char *d, int n, int *al); int ssl_parse_serverhello_tlsext(SSL *s, unsigned char **data, unsigned char *d, int n, int *al); -int ssl_prepare_clienthello_tlsext(SSL *s); -int ssl_prepare_serverhello_tlsext(SSL *s); int ssl_check_clienthello_tlsext_early(SSL *s); int ssl_check_clienthello_tlsext_late(SSL *s); int ssl_check_serverhello_tlsext(SSL *s); |