diff options
author | 2020-10-03 18:01:55 +0000 | |
---|---|---|
committer | 2020-10-03 18:01:55 +0000 | |
commit | f6d60a7a6b9ef5101c7a8c94dcbd7fd0a89488c9 (patch) | |
tree | a614e4d5ab5d7c3fa828b2439df5f89faad53a60 /lib/libssl/ssl_locl.h | |
parent | Use TLSv1_1_enc_data instead of DTLSv1_enc_data. (diff) | |
download | wireguard-openbsd-f6d60a7a6b9ef5101c7a8c94dcbd7fd0a89488c9.tar.xz wireguard-openbsd-f6d60a7a6b9ef5101c7a8c94dcbd7fd0a89488c9.zip |
Merge d1_{clnt,srvr}.c into ssl_{clnt,srvr}.c
The d1_{clnt,srvr}.c contain a single function each - merge these into the
ssl_{clnt,srvr}.c, renaming them with an ssl3_ prefix for consistency.
ok beck@ tb@
Diffstat (limited to 'lib/libssl/ssl_locl.h')
-rw-r--r-- | lib/libssl/ssl_locl.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libssl/ssl_locl.h b/lib/libssl/ssl_locl.h index 22f9760225c..41b3c027247 100644 --- a/lib/libssl/ssl_locl.h +++ b/lib/libssl/ssl_locl.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl_locl.h,v 1.297 2020/10/03 17:54:27 jsing Exp $ */ +/* $OpenBSD: ssl_locl.h,v 1.298 2020/10/03 18:01:55 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -1297,8 +1297,8 @@ void dtls1_double_timeout(SSL *s); unsigned int dtls1_min_mtu(void); /* some client-only functions */ -int dtls1_get_hello_verify(SSL *s); int ssl3_send_client_hello(SSL *s); +int ssl3_get_dtls_hello_verify(SSL *s); int ssl3_get_server_hello(SSL *s); int ssl3_get_certificate_request(SSL *s); int ssl3_get_new_session_ticket(SSL *s); @@ -1314,8 +1314,8 @@ int ssl3_check_cert_and_algorithm(SSL *s); int ssl3_check_finished(SSL *s); /* some server-only functions */ -int dtls1_send_hello_verify_request(SSL *s); int ssl3_get_client_hello(SSL *s); +int ssl3_send_dtls_hello_verify_request(SSL *s); int ssl3_send_server_hello(SSL *s); int ssl3_send_hello_request(SSL *s); int ssl3_send_server_key_exchange(SSL *s); |