diff options
author | doug <> | 2017-08-11 05:06:34 +0000 |
---|---|---|
committer | doug <> | 2017-08-11 05:06:34 +0000 |
commit | 2c7289aaf0a5e656e3db4ad3e101b1dd3e2dc610 (patch) | |
tree | cf9f734a8e9d38d5af29ff18c56720f241220b61 /src/lib/libssl/ssl_locl.h | |
parent | ae58363a3ade3f9016687060c0c4efe3702141f8 (diff) | |
download | openbsd-2c7289aaf0a5e656e3db4ad3e101b1dd3e2dc610.tar.gz openbsd-2c7289aaf0a5e656e3db4ad3e101b1dd3e2dc610.tar.bz2 openbsd-2c7289aaf0a5e656e3db4ad3e101b1dd3e2dc610.zip |
Rewrite the ECPointFormats TLS extension handling using CBB/CBS and the
new extension framework.
input + ok jsing@
Diffstat (limited to 'src/lib/libssl/ssl_locl.h')
-rw-r--r-- | src/lib/libssl/ssl_locl.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lib/libssl/ssl_locl.h b/src/lib/libssl/ssl_locl.h index 8ef2d01402..c11c5899e3 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.184 2017/08/10 17:18:38 jsing Exp $ */ | 1 | /* $OpenBSD: ssl_locl.h,v 1.185 2017/08/11 05:06:34 doug 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 | * |
@@ -1380,6 +1380,9 @@ int SSL_state_func_code(int _state); | |||
1380 | #define SSLerrorx(r) ERR_PUT_error(ERR_LIB_SSL,(0xfff),(r),__FILE__,__LINE__) | 1380 | #define SSLerrorx(r) ERR_PUT_error(ERR_LIB_SSL,(0xfff),(r),__FILE__,__LINE__) |
1381 | void SSL_error_internal(const SSL *s, int r, char *f, int l); | 1381 | void SSL_error_internal(const SSL *s, int r, char *f, int l); |
1382 | 1382 | ||
1383 | void tls1_get_formatlist(SSL *s, int client_formats, const uint8_t **pformats, | ||
1384 | size_t *pformatslen); | ||
1385 | |||
1383 | __END_HIDDEN_DECLS | 1386 | __END_HIDDEN_DECLS |
1384 | 1387 | ||
1385 | #endif | 1388 | #endif |