diff options
Diffstat (limited to 'src/lib/libssl/d1_meth.c')
-rw-r--r-- | src/lib/libssl/d1_meth.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/lib/libssl/d1_meth.c b/src/lib/libssl/d1_meth.c index c7604863fa..4493aa180b 100644 --- a/src/lib/libssl/d1_meth.c +++ b/src/lib/libssl/d1_meth.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: d1_meth.c,v 1.11 2017/01/21 06:50:02 jsing Exp $ */ | 1 | /* $OpenBSD: d1_meth.c,v 1.12 2017/01/23 10:22:06 jsing Exp $ */ |
2 | /* | 2 | /* |
3 | * DTLS implementation written by Nagendra Modadugu | 3 | * DTLS implementation written by Nagendra Modadugu |
4 | * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. | 4 | * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. |
@@ -84,8 +84,6 @@ static const SSL_METHOD DTLSv1_method_data = { | |||
84 | .ssl_read_bytes = dtls1_read_bytes, | 84 | .ssl_read_bytes = dtls1_read_bytes, |
85 | .ssl_write_bytes = dtls1_write_app_data_bytes, | 85 | .ssl_write_bytes = dtls1_write_app_data_bytes, |
86 | .ssl_dispatch_alert = dtls1_dispatch_alert, | 86 | .ssl_dispatch_alert = dtls1_dispatch_alert, |
87 | .ssl_ctrl = dtls1_ctrl, | ||
88 | .ssl_ctx_ctrl = ssl3_ctx_ctrl, | ||
89 | .get_cipher_by_char = ssl3_get_cipher_by_char, | 87 | .get_cipher_by_char = ssl3_get_cipher_by_char, |
90 | .put_cipher_by_char = ssl3_put_cipher_by_char, | 88 | .put_cipher_by_char = ssl3_put_cipher_by_char, |
91 | .ssl_pending = ssl3_pending, | 89 | .ssl_pending = ssl3_pending, |
@@ -95,8 +93,6 @@ static const SSL_METHOD DTLSv1_method_data = { | |||
95 | .get_timeout = dtls1_default_timeout, | 93 | .get_timeout = dtls1_default_timeout, |
96 | .ssl3_enc = &DTLSv1_enc_data, | 94 | .ssl3_enc = &DTLSv1_enc_data, |
97 | .ssl_version = ssl_undefined_void_function, | 95 | .ssl_version = ssl_undefined_void_function, |
98 | .ssl_callback_ctrl = ssl3_callback_ctrl, | ||
99 | .ssl_ctx_callback_ctrl = ssl3_ctx_callback_ctrl, | ||
100 | }; | 96 | }; |
101 | 97 | ||
102 | const SSL_METHOD * | 98 | const SSL_METHOD * |