mirror of
https://github.com/nginx/nginx.git
synced 2025-02-25 18:55:26 -06:00
QUIC: fixed C4389 MSVC warning about signed/unsigned mismatch.
This commit is contained in:
parent
499dbd28be
commit
553eb6a168
@ -988,8 +988,9 @@ ngx_quic_decrypt(ngx_quic_header_t *pkt, uint64_t *largest_pn)
|
|||||||
u_char *p, *sample;
|
u_char *p, *sample;
|
||||||
size_t len;
|
size_t len;
|
||||||
uint64_t pn, lpn;
|
uint64_t pn, lpn;
|
||||||
ngx_int_t pnl, rc, key_phase;
|
ngx_int_t pnl, rc;
|
||||||
ngx_str_t in, ad;
|
ngx_str_t in, ad;
|
||||||
|
ngx_uint_t key_phase;
|
||||||
ngx_quic_secret_t *secret;
|
ngx_quic_secret_t *secret;
|
||||||
ngx_quic_ciphers_t ciphers;
|
ngx_quic_ciphers_t ciphers;
|
||||||
uint8_t nonce[NGX_QUIC_IV_LEN], mask[NGX_QUIC_HP_LEN];
|
uint8_t nonce[NGX_QUIC_IV_LEN], mask[NGX_QUIC_HP_LEN];
|
||||||
|
Loading…
Reference in New Issue
Block a user