diff options
author | jsing <> | 2020-10-03 18:01:55 +0000 |
---|---|---|
committer | jsing <> | 2020-10-03 18:01:55 +0000 |
commit | 3aed61703f68a54e3f14a52befd98a4b9b9a59b8 (patch) | |
tree | 2551d0043eb97a752fc5f4f898fb518c397c443c /src/lib/libssl/ssl_locl.h | |
parent | 7ec834bc3417b066072208fd7b33985994ff8ec2 (diff) | |
download | openbsd-3aed61703f68a54e3f14a52befd98a4b9b9a59b8.tar.gz openbsd-3aed61703f68a54e3f14a52befd98a4b9b9a59b8.tar.bz2 openbsd-3aed61703f68a54e3f14a52befd98a4b9b9a59b8.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 'src/lib/libssl/ssl_locl.h')
-rw-r--r-- | src/lib/libssl/ssl_locl.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libssl/ssl_locl.h b/src/lib/libssl/ssl_locl.h index 22f9760225..41b3c02724 100644 --- a/src/lib/libssl/ssl_locl.h +++ b/src/lib/libssl/ssl_locl.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssl_locl.h,v 1.297 2020/10/03 17:54:27 jsing Exp $ */ | 1 | /* $OpenBSD: ssl_locl.h,v 1.298 2020/10/03 18:01:55 jsing Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -1297,8 +1297,8 @@ void dtls1_double_timeout(SSL *s); | |||
1297 | unsigned int dtls1_min_mtu(void); | 1297 | unsigned int dtls1_min_mtu(void); |
1298 | 1298 | ||
1299 | /* some client-only functions */ | 1299 | /* some client-only functions */ |
1300 | int dtls1_get_hello_verify(SSL *s); | ||
1301 | int ssl3_send_client_hello(SSL *s); | 1300 | int ssl3_send_client_hello(SSL *s); |
1301 | int ssl3_get_dtls_hello_verify(SSL *s); | ||
1302 | int ssl3_get_server_hello(SSL *s); | 1302 | int ssl3_get_server_hello(SSL *s); |
1303 | int ssl3_get_certificate_request(SSL *s); | 1303 | int ssl3_get_certificate_request(SSL *s); |
1304 | int ssl3_get_new_session_ticket(SSL *s); | 1304 | int ssl3_get_new_session_ticket(SSL *s); |
@@ -1314,8 +1314,8 @@ int ssl3_check_cert_and_algorithm(SSL *s); | |||
1314 | int ssl3_check_finished(SSL *s); | 1314 | int ssl3_check_finished(SSL *s); |
1315 | 1315 | ||
1316 | /* some server-only functions */ | 1316 | /* some server-only functions */ |
1317 | int dtls1_send_hello_verify_request(SSL *s); | ||
1318 | int ssl3_get_client_hello(SSL *s); | 1317 | int ssl3_get_client_hello(SSL *s); |
1318 | int ssl3_send_dtls_hello_verify_request(SSL *s); | ||
1319 | int ssl3_send_server_hello(SSL *s); | 1319 | int ssl3_send_server_hello(SSL *s); |
1320 | int ssl3_send_hello_request(SSL *s); | 1320 | int ssl3_send_hello_request(SSL *s); |
1321 | int ssl3_send_server_key_exchange(SSL *s); | 1321 | int ssl3_send_server_key_exchange(SSL *s); |