diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2017-01-26 05:31:26 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2017-01-26 05:31:26 +0000 |
commit | f972655637430847a3002ab87a8644eb6117ee4d (patch) | |
tree | 33e188a5c291378d2cea99fc1e584a9484019c29 /lib/libssl/d1_srvr.c | |
parent | 910e66612ba156a819383c18652d6b8716d3a27c (diff) |
Merge the client/server version negotiation into the existing (currently
fixed version) client/server code.
ok beck@
Diffstat (limited to 'lib/libssl/d1_srvr.c')
-rw-r--r-- | lib/libssl/d1_srvr.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/libssl/d1_srvr.c b/lib/libssl/d1_srvr.c index 1787412bf52..1be0e4b5963 100644 --- a/lib/libssl/d1_srvr.c +++ b/lib/libssl/d1_srvr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: d1_srvr.c,v 1.79 2017/01/23 13:36:13 jsing Exp $ */ +/* $OpenBSD: d1_srvr.c,v 1.80 2017/01/26 05:31:25 jsing Exp $ */ /* * DTLS implementation written by Nagendra Modadugu * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. @@ -125,7 +125,6 @@ #include <openssl/objects.h> #include <openssl/x509.h> -static const SSL_METHOD *dtls1_get_server_method(int ver); static int dtls1_send_hello_verify_request(SSL *s); static const SSL_METHOD_INTERNAL DTLSv1_server_method_internal_data = { @@ -168,7 +167,7 @@ DTLSv1_server_method(void) return &DTLSv1_server_method_data; } -static const SSL_METHOD * +const SSL_METHOD * dtls1_get_server_method(int ver) { if (ver == DTLS1_VERSION) |