diff options
Diffstat (limited to 'src/lib/libssl/t1_clnt.c')
-rw-r--r-- | src/lib/libssl/t1_clnt.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/lib/libssl/t1_clnt.c b/src/lib/libssl/t1_clnt.c index b2adbaee73..0dc41af5b3 100644 --- a/src/lib/libssl/t1_clnt.c +++ b/src/lib/libssl/t1_clnt.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: t1_clnt.c,v 1.16 2014/11/16 14:12:47 jsing Exp $ */ | 1 | /* $OpenBSD: t1_clnt.c,v 1.17 2015/02/06 08:30:23 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 | * |
@@ -85,6 +85,8 @@ const SSL_METHOD TLSv1_client_method_data = { | |||
85 | .ssl_dispatch_alert = ssl3_dispatch_alert, | 85 | .ssl_dispatch_alert = ssl3_dispatch_alert, |
86 | .ssl_ctrl = ssl3_ctrl, | 86 | .ssl_ctrl = ssl3_ctrl, |
87 | .ssl_ctx_ctrl = ssl3_ctx_ctrl, | 87 | .ssl_ctx_ctrl = ssl3_ctx_ctrl, |
88 | .get_cipher_by_char = ssl3_get_cipher_by_char, | ||
89 | .put_cipher_by_char = ssl3_put_cipher_by_char, | ||
88 | .ssl_pending = ssl3_pending, | 90 | .ssl_pending = ssl3_pending, |
89 | .num_ciphers = ssl3_num_ciphers, | 91 | .num_ciphers = ssl3_num_ciphers, |
90 | .get_cipher = ssl3_get_cipher, | 92 | .get_cipher = ssl3_get_cipher, |
@@ -115,6 +117,8 @@ const SSL_METHOD TLSv1_1_client_method_data = { | |||
115 | .ssl_dispatch_alert = ssl3_dispatch_alert, | 117 | .ssl_dispatch_alert = ssl3_dispatch_alert, |
116 | .ssl_ctrl = ssl3_ctrl, | 118 | .ssl_ctrl = ssl3_ctrl, |
117 | .ssl_ctx_ctrl = ssl3_ctx_ctrl, | 119 | .ssl_ctx_ctrl = ssl3_ctx_ctrl, |
120 | .get_cipher_by_char = ssl3_get_cipher_by_char, | ||
121 | .put_cipher_by_char = ssl3_put_cipher_by_char, | ||
118 | .ssl_pending = ssl3_pending, | 122 | .ssl_pending = ssl3_pending, |
119 | .num_ciphers = ssl3_num_ciphers, | 123 | .num_ciphers = ssl3_num_ciphers, |
120 | .get_cipher = ssl3_get_cipher, | 124 | .get_cipher = ssl3_get_cipher, |
@@ -145,6 +149,8 @@ const SSL_METHOD TLSv1_2_client_method_data = { | |||
145 | .ssl_dispatch_alert = ssl3_dispatch_alert, | 149 | .ssl_dispatch_alert = ssl3_dispatch_alert, |
146 | .ssl_ctrl = ssl3_ctrl, | 150 | .ssl_ctrl = ssl3_ctrl, |
147 | .ssl_ctx_ctrl = ssl3_ctx_ctrl, | 151 | .ssl_ctx_ctrl = ssl3_ctx_ctrl, |
152 | .get_cipher_by_char = ssl3_get_cipher_by_char, | ||
153 | .put_cipher_by_char = ssl3_put_cipher_by_char, | ||
148 | .ssl_pending = ssl3_pending, | 154 | .ssl_pending = ssl3_pending, |
149 | .num_ciphers = ssl3_num_ciphers, | 155 | .num_ciphers = ssl3_num_ciphers, |
150 | .get_cipher = ssl3_get_cipher, | 156 | .get_cipher = ssl3_get_cipher, |