summaryrefslogtreecommitdiff
path: root/src/lib/libssl/ssl_locl.h
diff options
context:
space:
mode:
authorjsing <>2015-09-11 16:28:37 +0000
committerjsing <>2015-09-11 16:28:37 +0000
commit396c0de2b029bf62cad52ca0c26f6652679681ad (patch)
tree07de9f4ea223bdb360a6ea9a6ca3786e496a5fbd /src/lib/libssl/ssl_locl.h
parent17940a7d2ce479d9b1d953966cf5889735aa9714 (diff)
downloadopenbsd-396c0de2b029bf62cad52ca0c26f6652679681ad.tar.gz
openbsd-396c0de2b029bf62cad52ca0c26f6652679681ad.tar.bz2
openbsd-396c0de2b029bf62cad52ca0c26f6652679681ad.zip
Replace dtls1_send_finished() with ssl3_send_finished() - they're now
both essentially the same (in fact DTLS benefits from improvements previously made to the ssl3_send_finished() function). ok beck@
Diffstat (limited to 'src/lib/libssl/ssl_locl.h')
-rw-r--r--src/lib/libssl/ssl_locl.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/libssl/ssl_locl.h b/src/lib/libssl/ssl_locl.h
index 8c8dec77b6..ea14ae0398 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.103 2015/09/02 17:59:15 jsing Exp $ */ 1/* $OpenBSD: ssl_locl.h,v 1.104 2015/09/11 16:28:37 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 *
@@ -685,7 +685,6 @@ int dtls1_write_app_data_bytes(SSL *s, int type, const void *buf, int len);
685int dtls1_write_bytes(SSL *s, int type, const void *buf, int len); 685int dtls1_write_bytes(SSL *s, int type, const void *buf, int len);
686 686
687int dtls1_send_change_cipher_spec(SSL *s, int a, int b); 687int dtls1_send_change_cipher_spec(SSL *s, int a, int b);
688int dtls1_send_finished(SSL *s, int a, int b, const char *sender, int slen);
689unsigned long dtls1_output_cert_chain(SSL *s, X509 *x); 688unsigned long dtls1_output_cert_chain(SSL *s, X509 *x);
690int dtls1_read_failed(SSL *s, int code); 689int dtls1_read_failed(SSL *s, int code);
691int dtls1_buffer_message(SSL *s, int ccs); 690int dtls1_buffer_message(SSL *s, int ccs);