summaryrefslogtreecommitdiff
path: root/src/lib/libssl/ssl_locl.h
diff options
context:
space:
mode:
authorjsing <>2016-12-06 13:38:11 +0000
committerjsing <>2016-12-06 13:38:11 +0000
commit95a901d22cb8e548a73bd42d95b1bdf70996f7f2 (patch)
tree637189bfb9f1969f946ec330944d4038db2c5cb9 /src/lib/libssl/ssl_locl.h
parent21ff89ebbb4bdd4d2a5dee38cb8d4960c200234c (diff)
downloadopenbsd-95a901d22cb8e548a73bd42d95b1bdf70996f7f2.tar.gz
openbsd-95a901d22cb8e548a73bd42d95b1bdf70996f7f2.tar.bz2
openbsd-95a901d22cb8e548a73bd42d95b1bdf70996f7f2.zip
Now that ssl3_send_{client,server}_certificate() are using the common
handshake functions, we can remove more copied code from DTLS.
Diffstat (limited to 'src/lib/libssl/ssl_locl.h')
-rw-r--r--src/lib/libssl/ssl_locl.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/lib/libssl/ssl_locl.h b/src/lib/libssl/ssl_locl.h
index 89fb83eb9a..3de5571985 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.138 2016/12/06 13:17:52 jsing Exp $ */ 1/* $OpenBSD: ssl_locl.h,v 1.139 2016/12/06 13:38:11 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 *
@@ -715,8 +715,6 @@ int ssl3_check_cert_and_algorithm(SSL *s);
715int ssl3_check_finished(SSL *s); 715int ssl3_check_finished(SSL *s);
716int ssl3_send_next_proto(SSL *s); 716int ssl3_send_next_proto(SSL *s);
717 717
718int dtls1_send_client_certificate(SSL *s);
719
720/* some server-only functions */ 718/* some server-only functions */
721int ssl3_get_client_hello(SSL *s); 719int ssl3_get_client_hello(SSL *s);
722int ssl3_send_server_hello(SSL *s); 720int ssl3_send_server_hello(SSL *s);
@@ -729,8 +727,6 @@ int ssl3_get_client_key_exchange(SSL *s);
729int ssl3_get_cert_verify(SSL *s); 727int ssl3_get_cert_verify(SSL *s);
730int ssl3_get_next_proto(SSL *s); 728int ssl3_get_next_proto(SSL *s);
731 729
732int dtls1_send_server_certificate(SSL *s);
733
734int ssl23_accept(SSL *s); 730int ssl23_accept(SSL *s);
735int ssl23_connect(SSL *s); 731int ssl23_connect(SSL *s);
736int ssl23_read_bytes(SSL *s, int n); 732int ssl23_read_bytes(SSL *s, int n);