summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorVladimir Homutov <vl@nginx.com>2021-11-08 15:41:12 +0300
committerVladimir Homutov <vl@nginx.com>2021-11-08 15:41:12 +0300
commitdf22336bfa387c1724a3b8b9ce97d002ab081721 (patch)
tree86cac18230b81295311402aefcccdb4c3e3c8a3e /src
parent9ca3a02e684a3b5f19b6fec5b486d59eb4a4b319 (diff)
downloadnginx-df22336bfa387c1724a3b8b9ce97d002ab081721.tar.gz
nginx-df22336bfa387c1724a3b8b9ce97d002ab081721.tar.bz2
QUIC: converted client_tp_done to bitfield.
Diffstat (limited to 'src')
-rw-r--r--src/event/quic/ngx_event_quic_connection.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/event/quic/ngx_event_quic_connection.h b/src/event/quic/ngx_event_quic_connection.h
index 9f3cb2cd0..ee80342fa 100644
--- a/src/event/quic/ngx_event_quic_connection.h
+++ b/src/event/quic/ngx_event_quic_connection.h
@@ -200,7 +200,6 @@ struct ngx_quic_connection_s {
uint64_t server_seqnum;
uint64_t path_seqnum;
- ngx_uint_t client_tp_done;
ngx_quic_tp_t tp;
ngx_quic_tp_t ctp;
@@ -253,6 +252,7 @@ struct ngx_quic_connection_s {
unsigned draining:1;
unsigned key_phase:1;
unsigned validated:1;
+ unsigned client_tp_done:1;
};