diff options
author | jsing <> | 2017-01-22 04:07:44 +0000 |
---|---|---|
committer | jsing <> | 2017-01-22 04:07:44 +0000 |
commit | 4e41b8e085c03099d680e9806dd3eea21afb86fe (patch) | |
tree | 20d8b3369e4b8892b9e43215b28d1fe6b0e34e48 /src/lib/libssl/ssl_locl.h | |
parent | 5a672ea523eafdd9e5e73b3167e915511ad393a4 (diff) | |
download | openbsd-4e41b8e085c03099d680e9806dd3eea21afb86fe.tar.gz openbsd-4e41b8e085c03099d680e9806dd3eea21afb86fe.tar.bz2 openbsd-4e41b8e085c03099d680e9806dd3eea21afb86fe.zip |
Move recently added min_version/max_version from SSL and SSL_CTX to their
opaque structs.
Diffstat (limited to 'src/lib/libssl/ssl_locl.h')
-rw-r--r-- | src/lib/libssl/ssl_locl.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/lib/libssl/ssl_locl.h b/src/lib/libssl/ssl_locl.h index 50f527aad5..ab18ae1c83 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.146 2017/01/22 03:50:45 jsing Exp $ */ | 1 | /* $OpenBSD: ssl_locl.h,v 1.147 2017/01/22 04:07:44 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 | * |
@@ -377,11 +377,13 @@ typedef struct ssl_session_internal_st { | |||
377 | } SSL_SESSION_INTERNAL; | 377 | } SSL_SESSION_INTERNAL; |
378 | 378 | ||
379 | typedef struct ssl_ctx_internal_st { | 379 | typedef struct ssl_ctx_internal_st { |
380 | 380 | uint16_t min_version; | |
381 | uint16_t max_version; | ||
381 | } SSL_CTX_INTERNAL; | 382 | } SSL_CTX_INTERNAL; |
382 | 383 | ||
383 | typedef struct ssl_internal_st { | 384 | typedef struct ssl_internal_st { |
384 | 385 | uint16_t min_version; | |
386 | uint16_t max_version; | ||
385 | } SSL_INTERNAL; | 387 | } SSL_INTERNAL; |
386 | 388 | ||
387 | typedef struct ssl3_state_internal_st { | 389 | typedef struct ssl3_state_internal_st { |