diff options
Diffstat (limited to 'src/ssl/s3_meth.c')
-rw-r--r-- | src/ssl/s3_meth.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/ssl/s3_meth.c b/src/ssl/s3_meth.c index 5a25d7b..28b9051 100644 --- a/src/ssl/s3_meth.c +++ b/src/ssl/s3_meth.c @@ -54,10 +54,11 @@ * copied and put under another distribution licence * [including the GNU Public Licence.] */ -#include "ssl_locl.h" +#include "internal.h" static const SSL_PROTOCOL_METHOD TLS_protocol_method = { + 0 /* is_dtls */, ssl3_new, ssl3_free, ssl3_accept, @@ -77,9 +78,9 @@ static const SSL_PROTOCOL_METHOD TLS_protocol_method = { ssl3_pending, ssl3_num_ciphers, ssl3_get_cipher, - ssl_undefined_void_function, - ssl3_callback_ctrl, - ssl3_ctx_callback_ctrl, + SSL3_HM_HEADER_LENGTH, + ssl3_set_handshake_header, + ssl3_handshake_write, }; const SSL_METHOD *TLS_method(void) { |