diff options
Diffstat (limited to 'src/event/ngx_event_quic_protection.c')
-rw-r--r-- | src/event/ngx_event_quic_protection.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/event/ngx_event_quic_protection.c b/src/event/ngx_event_quic_protection.c index 23b8c011f..f648bbee8 100644 --- a/src/event/ngx_event_quic_protection.c +++ b/src/event/ngx_event_quic_protection.c @@ -904,7 +904,7 @@ ngx_quic_decrypt(ngx_pool_t *pool, ngx_ssl_conn_t *ssl_conn, return NGX_ERROR; } - if (pkt->flags & NGX_QUIC_PKT_LONG) { + if (ngx_quic_long_pkt(pkt->flags)) { clearflags = pkt->flags ^ (mask[0] & 0x0f); } else { @@ -926,7 +926,7 @@ ngx_quic_decrypt(ngx_pool_t *pool, ngx_ssl_conn_t *ssl_conn, in.data = p; - if (pkt->flags & NGX_QUIC_PKT_LONG) { + if (ngx_quic_long_pkt(pkt->flags)) { in.len = pkt->len - pnl; } else { |