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
commit7f48619b94119e03c018bbe0da0ebeaf4d449e43 (patch)
tree07de9f4ea223bdb360a6ea9a6ca3786e496a5fbd /src/lib/libssl/ssl_locl.h
parente68a7329240856ae300e3a394ca92903b5cf7360 (diff)
downloadopenbsd-7f48619b94119e03c018bbe0da0ebeaf4d449e43.tar.gz
openbsd-7f48619b94119e03c018bbe0da0ebeaf4d449e43.tar.bz2
openbsd-7f48619b94119e03c018bbe0da0ebeaf4d449e43.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 '')
-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);