diff options
author | 2017-10-12 15:44:18 +0000 | |
---|---|---|
committer | 2017-10-12 15:44:18 +0000 | |
commit | aecd16cd50689f4ee25c1d0b53cfc07017706839 (patch) | |
tree | 70b44f0321cf9c27321b6031a7cbaa5772aac5a6 | |
parent | Copy comment for M_LOOP from header file to mbuf(9). (diff) | |
download | wireguard-openbsd-aecd16cd50689f4ee25c1d0b53cfc07017706839.tar.xz wireguard-openbsd-aecd16cd50689f4ee25c1d0b53cfc07017706839.zip |
Drop prototypes for ssl23_*() functions, which no longer exist.
-rw-r--r-- | lib/libssl/ssl_locl.h | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/lib/libssl/ssl_locl.h b/lib/libssl/ssl_locl.h index 92667ec125e..5e3872ba49d 100644 --- a/lib/libssl/ssl_locl.h +++ b/lib/libssl/ssl_locl.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl_locl.h,v 1.198 2017/10/11 17:35:00 jsing Exp $ */ +/* $OpenBSD: ssl_locl.h,v 1.199 2017/10/12 15:44:18 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -1150,11 +1150,6 @@ int ssl3_record_write(SSL *s, int type); void tls1_record_sequence_increment(unsigned char *seq); int ssl3_do_change_cipher_spec(SSL *ssl); -int ssl23_read(SSL *s, void *buf, int len); -int ssl23_peek(SSL *s, void *buf, int len); -int ssl23_write(SSL *s, const void *buf, int len); -long ssl23_default_timeout(void); - long tls1_default_timeout(void); int dtls1_do_write(SSL *s, int type); int ssl3_packet_read(SSL *s, int plen); @@ -1224,11 +1219,6 @@ int ssl3_get_client_certificate(SSL *s); int ssl3_get_client_key_exchange(SSL *s); int ssl3_get_cert_verify(SSL *s); -int ssl23_accept(SSL *s); -int ssl23_connect(SSL *s); -int ssl23_read_bytes(SSL *s, int n); -int ssl23_write_bytes(SSL *s); - int tls1_new(SSL *s); void tls1_free(SSL *s); void tls1_clear(SSL *s); |