diff options
| author | Roman Arutyunyan <arut@nginx.com> | 2023-01-31 15:26:33 +0400 |
|---|---|---|
| committer | Roman Arutyunyan <arut@nginx.com> | 2023-01-31 15:26:33 +0400 |
| commit | b7ccca0eb07ebf5f0a78c21cc45f7ac865dda986 (patch) | |
| tree | 5c46b98592d5b5a4053fd5c84b918a008d34a38f /src/event/quic/ngx_event_quic_transport.h | |
| parent | 341c21c9f6373ceeb0ad2513e14c5cd97e958b28 (diff) | |
| download | nginx-b7ccca0eb07ebf5f0a78c21cc45f7ac865dda986.tar.gz nginx-b7ccca0eb07ebf5f0a78c21cc45f7ac865dda986.tar.bz2 | |
QUIC: fixed broken token in NEW_TOKEN (ticket #2446).
Previously, since 3550b00d9dc8, the token was allocated on stack, to get
rid of pool usage. Now the token is allocated by ngx_quic_copy_buffer()
in QUIC buffers, also used for STREAM, CRYPTO and ACK frames.
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, 0 insertions, 1 deletions
diff --git a/src/event/quic/ngx_event_quic_transport.h b/src/event/quic/ngx_event_quic_transport.h index 6f95f85ad..16d9095ef 100644 --- a/src/event/quic/ngx_event_quic_transport.h +++ b/src/event/quic/ngx_event_quic_transport.h @@ -167,7 +167,6 @@ typedef struct { typedef struct { uint64_t length; - u_char *data; } ngx_quic_new_token_frame_t; /* |
