commit | cfd298b7aef2b095bee8d172a6a40d6c59d1574b | [log] [tgz] |
---|---|---|
author | Dr. Stephen Henson <steve@openssl.org> | Tue Mar 19 15:51:26 2013 +0000 |
committer | Dr. Stephen Henson <steve@openssl.org> | Tue Mar 26 15:16:41 2013 +0000 |
tree | fdc5d7d5991c537eed090b382d51720d97b03658 | |
parent | 874a18cfadc6bac0ad73482325f2ca72dfccdb82 [diff] [blame] |
Extend DTLS method macros. Extend DTLS method creation macros to support version numbers and encryption methods. Update existing code.
diff --git a/ssl/d1_meth.c b/ssl/d1_meth.c index 5c4004b..0470624 100644 --- a/ssl/d1_meth.c +++ b/ssl/d1_meth.c
@@ -70,8 +70,10 @@ return(NULL); } -IMPLEMENT_dtls1_meth_func(DTLSv1_method, +IMPLEMENT_dtls1_meth_func(DTLS1_VERSION, + DTLSv1_method, dtls1_accept, dtls1_connect, - dtls1_get_method) + dtls1_get_method, + DTLSv1_enc_data)