summaryrefslogtreecommitdiffstats
path: root/ssl/quic/quic_channel_local.h
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2023-11-09 10:27:13 +0000
committerHugo Landau <hlandau@openssl.org>2023-12-21 08:11:59 +0000
commit632b0c7e8c9700b4f3fe49ccccda9caa1fbd390f (patch)
tree82c32e229af305523ae84d6d4cc5e5c65cc94dfd /ssl/quic/quic_channel_local.h
parent4ed6b48d9dd469d43d810fa285257043e9ce9779 (diff)
QUIC PORT, CHANNEL: Move ticking code into QUIC_PORT
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/22674)
Diffstat (limited to 'ssl/quic/quic_channel_local.h')
-rw-r--r--ssl/quic/quic_channel_local.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/ssl/quic/quic_channel_local.h b/ssl/quic/quic_channel_local.h
index e2aea16f68..dafe03fe8a 100644
--- a/ssl/quic/quic_channel_local.h
+++ b/ssl/quic/quic_channel_local.h
@@ -58,15 +58,9 @@ struct quic_channel_st {
*/
unsigned char *local_transport_params;
- /* Asynchronous I/O reactor. */
- QUIC_REACTOR rtor;
-
/* Our current L4 peer address, if any. */
BIO_ADDR cur_peer_addr;
- /* Network-side read and write BIOs. */
- BIO *net_rbio, *net_wbio;
-
/*
* Subcomponents of the connection. All of these components are instantiated
* and owned by us.
@@ -442,9 +436,6 @@ struct quic_channel_st {
*/
unsigned int protocol_error : 1;
- /* Inhibit tick for testing purposes? */
- unsigned int inhibit_tick : 1;
-
/* Are we using addressed mode? */
unsigned int addressed_mode : 1;