summaryrefslogtreecommitdiff
path: root/src/lib/libssl/ssl_locl.h
diff options
context:
space:
mode:
authorjsing <>2016-12-18 13:52:53 +0000
committerjsing <>2016-12-18 13:52:53 +0000
commit4b3d6b86234b0d9d9129be2b2cbbad14aac5afdb (patch)
tree507706df51532397cd6425a60b7f4505c7008ca4 /src/lib/libssl/ssl_locl.h
parent8def53432c03f833e2f2c79b876710d1cf8d60ea (diff)
downloadopenbsd-4b3d6b86234b0d9d9129be2b2cbbad14aac5afdb.tar.gz
openbsd-4b3d6b86234b0d9d9129be2b2cbbad14aac5afdb.tar.bz2
openbsd-4b3d6b86234b0d9d9129be2b2cbbad14aac5afdb.zip
Convert ssl3_get_server_hello() to CBS.
ok doug@
Diffstat (limited to '')
-rw-r--r--src/lib/libssl/ssl_locl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libssl/ssl_locl.h b/src/lib/libssl/ssl_locl.h
index 3de5571985..d7484dd7a0 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.139 2016/12/06 13:38:11 jsing Exp $ */ 1/* $OpenBSD: ssl_locl.h,v 1.140 2016/12/18 13:52:53 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 *
@@ -787,7 +787,7 @@ unsigned char *ssl_add_serverhello_tlsext(SSL *s, unsigned char *p,
787int ssl_parse_clienthello_tlsext(SSL *s, unsigned char **data, 787int ssl_parse_clienthello_tlsext(SSL *s, unsigned char **data,
788 unsigned char *d, int n, int *al); 788 unsigned char *d, int n, int *al);
789int ssl_parse_serverhello_tlsext(SSL *s, unsigned char **data, 789int ssl_parse_serverhello_tlsext(SSL *s, unsigned char **data,
790 unsigned char *d, int n, int *al); 790 size_t n, int *al);
791int ssl_check_clienthello_tlsext_early(SSL *s); 791int ssl_check_clienthello_tlsext_early(SSL *s);
792int ssl_check_clienthello_tlsext_late(SSL *s); 792int ssl_check_clienthello_tlsext_late(SSL *s);
793int ssl_check_serverhello_tlsext(SSL *s); 793int ssl_check_serverhello_tlsext(SSL *s);