summaryrefslogtreecommitdiff
path: root/src/lib/libssl/ssl_locl.h
diff options
context:
space:
mode:
authorjsing <>2020-10-03 18:01:55 +0000
committerjsing <>2020-10-03 18:01:55 +0000
commit3aed61703f68a54e3f14a52befd98a4b9b9a59b8 (patch)
tree2551d0043eb97a752fc5f4f898fb518c397c443c /src/lib/libssl/ssl_locl.h
parent7ec834bc3417b066072208fd7b33985994ff8ec2 (diff)
downloadopenbsd-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.h6
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);
1297unsigned int dtls1_min_mtu(void); 1297unsigned int dtls1_min_mtu(void);
1298 1298
1299/* some client-only functions */ 1299/* some client-only functions */
1300int dtls1_get_hello_verify(SSL *s);
1301int ssl3_send_client_hello(SSL *s); 1300int ssl3_send_client_hello(SSL *s);
1301int ssl3_get_dtls_hello_verify(SSL *s);
1302int ssl3_get_server_hello(SSL *s); 1302int ssl3_get_server_hello(SSL *s);
1303int ssl3_get_certificate_request(SSL *s); 1303int ssl3_get_certificate_request(SSL *s);
1304int ssl3_get_new_session_ticket(SSL *s); 1304int ssl3_get_new_session_ticket(SSL *s);
@@ -1314,8 +1314,8 @@ int ssl3_check_cert_and_algorithm(SSL *s);
1314int ssl3_check_finished(SSL *s); 1314int ssl3_check_finished(SSL *s);
1315 1315
1316/* some server-only functions */ 1316/* some server-only functions */
1317int dtls1_send_hello_verify_request(SSL *s);
1318int ssl3_get_client_hello(SSL *s); 1317int ssl3_get_client_hello(SSL *s);
1318int ssl3_send_dtls_hello_verify_request(SSL *s);
1319int ssl3_send_server_hello(SSL *s); 1319int ssl3_send_server_hello(SSL *s);
1320int ssl3_send_hello_request(SSL *s); 1320int ssl3_send_hello_request(SSL *s);
1321int ssl3_send_server_key_exchange(SSL *s); 1321int ssl3_send_server_key_exchange(SSL *s);