diff options
author | jsing <> | 2017-10-11 16:51:39 +0000 |
---|---|---|
committer | jsing <> | 2017-10-11 16:51:39 +0000 |
commit | e64dc34242390cd4a16eb683e606c5beccbb9aa7 (patch) | |
tree | 2fe8124781fd11334215e44437c46397432bc7a3 /src/lib/libssl/ssl_locl.h | |
parent | 62790ade0e2b202d99093dd2d8dc2df8284e2543 (diff) | |
download | openbsd-e64dc34242390cd4a16eb683e606c5beccbb9aa7.tar.gz openbsd-e64dc34242390cd4a16eb683e606c5beccbb9aa7.tar.bz2 openbsd-e64dc34242390cd4a16eb683e606c5beccbb9aa7.zip |
Fully convert ssl3_send_server_hello() to CBB.
Based on a diff from doug@
Diffstat (limited to 'src/lib/libssl/ssl_locl.h')
-rw-r--r-- | src/lib/libssl/ssl_locl.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/lib/libssl/ssl_locl.h b/src/lib/libssl/ssl_locl.h index 9d9f9c3e41..2ce4b05600 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.196 2017/10/10 16:51:38 jsing Exp $ */ | 1 | /* $OpenBSD: ssl_locl.h,v 1.197 2017/10/11 16:51:39 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 | * |
@@ -1289,9 +1289,6 @@ int tls1_get_shared_curve(SSL *s); | |||
1289 | unsigned char *ssl_add_clienthello_tlsext(SSL *s, unsigned char *p, | 1289 | unsigned char *ssl_add_clienthello_tlsext(SSL *s, unsigned char *p, |
1290 | unsigned char *limit); | 1290 | unsigned char *limit); |
1291 | 1291 | ||
1292 | unsigned char *ssl_add_serverhello_tlsext(SSL *s, unsigned char *p, | ||
1293 | unsigned char *limit); | ||
1294 | |||
1295 | int ssl_parse_clienthello_tlsext(SSL *s, unsigned char **data, | 1292 | int ssl_parse_clienthello_tlsext(SSL *s, unsigned char **data, |
1296 | unsigned char *d, int n, int *al); | 1293 | unsigned char *d, int n, int *al); |
1297 | int ssl_parse_serverhello_tlsext(SSL *s, unsigned char **data, | 1294 | int ssl_parse_serverhello_tlsext(SSL *s, unsigned char **data, |