comparison src/event/ngx_event_quic.c @ 8639:9d28e9028aa5 quic

QUIC: removed macros for stream limits unused since c5324bb3a704.
author Sergey Kandaurov <pluknet@nginx.com>
date Tue, 17 Nov 2020 12:22:24 +0000
parents d1cf691a82e8
children fe53def49945
comparison
equal deleted inserted replaced
8638:d1cf691a82e8 8639:9d28e9028aa5
22 ((level) == ssl_encryption_initial) ? &((qc)->send_ctx[0]) \ 22 ((level) == ssl_encryption_initial) ? &((qc)->send_ctx[0]) \
23 : (((level) == ssl_encryption_handshake) ? &((qc)->send_ctx[1]) \ 23 : (((level) == ssl_encryption_handshake) ? &((qc)->send_ctx[1]) \
24 : &((qc)->send_ctx[2])) 24 : &((qc)->send_ctx[2]))
25 25
26 #define NGX_QUIC_SEND_CTX_LAST (NGX_QUIC_ENCRYPTION_LAST - 1) 26 #define NGX_QUIC_SEND_CTX_LAST (NGX_QUIC_ENCRYPTION_LAST - 1)
27
28 #define NGX_QUIC_STREAMS_INC 16
29 #define NGX_QUIC_STREAMS_LIMIT (1ULL < 60)
30 27
31 /* 28 /*
32 * 7.4. Cryptographic Message Buffering 29 * 7.4. Cryptographic Message Buffering
33 * Implementations MUST support buffering at least 4096 bytes of data 30 * Implementations MUST support buffering at least 4096 bytes of data
34 */ 31 */