diff options
| author | Vladimir Homutov <vl@nginx.com> | 2022-05-31 11:05:22 +0400 |
|---|---|---|
| committer | Vladimir Homutov <vl@nginx.com> | 2022-05-31 11:05:22 +0400 |
| commit | 30ff0778544b4366867ac7ba8e3431b082f31ab4 (patch) | |
| tree | aa9730b4cc87e2777d0868ac47827a7b574d415b /src/event/quic/ngx_event_quic_transport.h | |
| parent | 664cb29f5240768988cfa02834bebfddeb32cfc9 (diff) | |
| download | nginx-30ff0778544b4366867ac7ba8e3431b082f31ab4.tar.gz nginx-30ff0778544b4366867ac7ba8e3431b082f31ab4.tar.bz2 | |
QUIC: avoided pool usage in token calculation.
Diffstat (limited to 'src/event/quic/ngx_event_quic_transport.h')
| -rw-r--r-- | src/event/quic/ngx_event_quic_transport.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/event/quic/ngx_event_quic_transport.h b/src/event/quic/ngx_event_quic_transport.h index a512ad802..6f95f85ad 100644 --- a/src/event/quic/ngx_event_quic_transport.h +++ b/src/event/quic/ngx_event_quic_transport.h @@ -322,6 +322,7 @@ typedef struct { /* cleartext fields */ ngx_str_t odcid; /* retry packet tag */ + u_char odcid_buf[NGX_QUIC_MAX_CID_LEN]; ngx_str_t dcid; ngx_str_t scid; uint64_t pn; |
