summaryrefslogtreecommitdiff
path: root/src/lib/libssl/ssl_locl.h
diff options
context:
space:
mode:
authorjsing <>2022-08-21 19:39:44 +0000
committerjsing <>2022-08-21 19:39:44 +0000
commit7fe8799b48e0b5267eb3138fe5229520af2a9519 (patch)
treedd5f0acd7e713e5bbeb81e92110d0ff96c5443c0 /src/lib/libssl/ssl_locl.h
parent3c351e711595523526ff652c526430c9865244a9 (diff)
downloadopenbsd-7fe8799b48e0b5267eb3138fe5229520af2a9519.tar.gz
openbsd-7fe8799b48e0b5267eb3138fe5229520af2a9519.tar.bz2
openbsd-7fe8799b48e0b5267eb3138fe5229520af2a9519.zip
Wire up SSL_QUIC_METHOD callbacks to the record layer callbacks for QUIC.
ok tb@
Diffstat (limited to 'src/lib/libssl/ssl_locl.h')
-rw-r--r--src/lib/libssl/ssl_locl.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/libssl/ssl_locl.h b/src/lib/libssl/ssl_locl.h
index d45983ac1e..fa3a5f9cfd 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.423 2022/08/21 19:32:38 jsing Exp $ */ 1/* $OpenBSD: ssl_locl.h,v 1.424 2022/08/21 19:39:44 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 *
@@ -580,7 +580,8 @@ typedef struct ssl_handshake_tls13_st {
580 unsigned char *clienthello_hash; 580 unsigned char *clienthello_hash;
581 unsigned int clienthello_hash_len; 581 unsigned int clienthello_hash_len;
582 582
583 /* QUIC read/write encryption levels. */ 583 /* QUIC read buffer and read/write encryption levels. */
584 struct tls_buffer *quic_read_buffer;
584 enum ssl_encryption_level_t quic_read_level; 585 enum ssl_encryption_level_t quic_read_level;
585 enum ssl_encryption_level_t quic_write_level; 586 enum ssl_encryption_level_t quic_write_level;
586} SSL_HANDSHAKE_TLS13; 587} SSL_HANDSHAKE_TLS13;