From: Vladimir Homutov Date: Mon, 8 Nov 2021 12:41:12 +0000 (+0300) Subject: QUIC: converted client_tp_done to bitfield. X-Git-Url: http://git.kaiwu.me/postgresql/log/contrib/postgres_fdw/postgres_fdw.c?a=commitdiff_plain;h=df22336bfa387c1724a3b8b9ce97d002ab081721;p=nginx.git QUIC: converted client_tp_done to bitfield. --- 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; };