summaryrefslogtreecommitdiff
path: root/src/lib/libssl/ssl_locl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libssl/ssl_locl.h')
-rw-r--r--src/lib/libssl/ssl_locl.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/lib/libssl/ssl_locl.h b/src/lib/libssl/ssl_locl.h
index 1f7e1fa587..50ed47d7d8 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.342 2021/05/05 10:05:27 jsing Exp $ */ 1/* $OpenBSD: ssl_locl.h,v 1.343 2021/05/05 19:52:00 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 *
@@ -546,8 +546,7 @@ void tls12_record_layer_set_cipher_hash(struct tls12_record_layer *rl,
546 const EVP_MD *mac_hash); 546 const EVP_MD *mac_hash);
547void tls12_record_layer_set_version(struct tls12_record_layer *rl, 547void tls12_record_layer_set_version(struct tls12_record_layer *rl,
548 uint16_t version); 548 uint16_t version);
549void tls12_record_layer_set_write_epoch(struct tls12_record_layer *rl, 549uint16_t tls12_record_layer_write_epoch(struct tls12_record_layer *rl);
550 uint16_t epoch);
551int tls12_record_layer_use_write_epoch(struct tls12_record_layer *rl, 550int tls12_record_layer_use_write_epoch(struct tls12_record_layer *rl,
552 uint16_t epoch); 551 uint16_t epoch);
553void tls12_record_layer_write_epoch_done(struct tls12_record_layer *rl, 552void tls12_record_layer_write_epoch_done(struct tls12_record_layer *rl,
@@ -997,7 +996,6 @@ typedef struct dtls1_state_internal_st {
997 * completed 996 * completed
998 */ 997 */
999 unsigned short r_epoch; 998 unsigned short r_epoch;
1000 unsigned short w_epoch;
1001 999
1002 /* records being received in the current epoch */ 1000 /* records being received in the current epoch */
1003 DTLS1_BITMAP bitmap; 1001 DTLS1_BITMAP bitmap;
@@ -1297,7 +1295,6 @@ int dtls1_get_message_header(unsigned char *data,
1297 struct hm_header_st *msg_hdr); 1295 struct hm_header_st *msg_hdr);
1298void dtls1_get_ccs_header(unsigned char *data, struct ccs_header_st *ccs_hdr); 1296void dtls1_get_ccs_header(unsigned char *data, struct ccs_header_st *ccs_hdr);
1299void dtls1_reset_read_seq_numbers(SSL *s); 1297void dtls1_reset_read_seq_numbers(SSL *s);
1300void dtls1_reset_write_seq_numbers(SSL *s);
1301struct timeval* dtls1_get_timeout(SSL *s, struct timeval* timeleft); 1298struct timeval* dtls1_get_timeout(SSL *s, struct timeval* timeleft);
1302int dtls1_check_timeout_num(SSL *s); 1299int dtls1_check_timeout_num(SSL *s);
1303int dtls1_handle_timeout(SSL *s); 1300int dtls1_handle_timeout(SSL *s);