diff options
Diffstat (limited to 'src/lib/libssl/t1_meth.c')
-rw-r--r-- | src/lib/libssl/t1_meth.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/lib/libssl/t1_meth.c b/src/lib/libssl/t1_meth.c index 71d957fca9..48341525d8 100644 --- a/src/lib/libssl/t1_meth.c +++ b/src/lib/libssl/t1_meth.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: t1_meth.c,v 1.15 2014/12/14 15:30:50 jsing Exp $ */ | 1 | /* $OpenBSD: t1_meth.c,v 1.16 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 | * |
@@ -83,6 +83,8 @@ const SSL_METHOD TLSv1_method_data = { | |||
83 | .ssl_dispatch_alert = ssl3_dispatch_alert, | 83 | .ssl_dispatch_alert = ssl3_dispatch_alert, |
84 | .ssl_ctrl = ssl3_ctrl, | 84 | .ssl_ctrl = ssl3_ctrl, |
85 | .ssl_ctx_ctrl = ssl3_ctx_ctrl, | 85 | .ssl_ctx_ctrl = ssl3_ctx_ctrl, |
86 | .get_cipher_by_char = ssl3_get_cipher_by_char, | ||
87 | .put_cipher_by_char = ssl3_put_cipher_by_char, | ||
86 | .ssl_pending = ssl3_pending, | 88 | .ssl_pending = ssl3_pending, |
87 | .num_ciphers = ssl3_num_ciphers, | 89 | .num_ciphers = ssl3_num_ciphers, |
88 | .get_cipher = ssl3_get_cipher, | 90 | .get_cipher = ssl3_get_cipher, |
@@ -113,6 +115,8 @@ const SSL_METHOD TLSv1_1_method_data = { | |||
113 | .ssl_dispatch_alert = ssl3_dispatch_alert, | 115 | .ssl_dispatch_alert = ssl3_dispatch_alert, |
114 | .ssl_ctrl = ssl3_ctrl, | 116 | .ssl_ctrl = ssl3_ctrl, |
115 | .ssl_ctx_ctrl = ssl3_ctx_ctrl, | 117 | .ssl_ctx_ctrl = ssl3_ctx_ctrl, |
118 | .get_cipher_by_char = ssl3_get_cipher_by_char, | ||
119 | .put_cipher_by_char = ssl3_put_cipher_by_char, | ||
116 | .ssl_pending = ssl3_pending, | 120 | .ssl_pending = ssl3_pending, |
117 | .num_ciphers = ssl3_num_ciphers, | 121 | .num_ciphers = ssl3_num_ciphers, |
118 | .get_cipher = ssl3_get_cipher, | 122 | .get_cipher = ssl3_get_cipher, |
@@ -143,6 +147,8 @@ const SSL_METHOD TLSv1_2_method_data = { | |||
143 | .ssl_dispatch_alert = ssl3_dispatch_alert, | 147 | .ssl_dispatch_alert = ssl3_dispatch_alert, |
144 | .ssl_ctrl = ssl3_ctrl, | 148 | .ssl_ctrl = ssl3_ctrl, |
145 | .ssl_ctx_ctrl = ssl3_ctx_ctrl, | 149 | .ssl_ctx_ctrl = ssl3_ctx_ctrl, |
150 | .get_cipher_by_char = ssl3_get_cipher_by_char, | ||
151 | .put_cipher_by_char = ssl3_put_cipher_by_char, | ||
146 | .ssl_pending = ssl3_pending, | 152 | .ssl_pending = ssl3_pending, |
147 | .num_ciphers = ssl3_num_ciphers, | 153 | .num_ciphers = ssl3_num_ciphers, |
148 | .get_cipher = ssl3_get_cipher, | 154 | .get_cipher = ssl3_get_cipher, |