comparison src/event/ngx_event_quic_protection.c @ 8565:0e12c4aca3ab quic

QUIC: fixed clang-ast asserts.
author Sergey Kandaurov <pluknet@nginx.com>
date Thu, 01 Oct 2020 12:09:47 +0100
parents b31c02454539
children 52ad697f9d1c
comparison
equal deleted inserted replaced
8564:b52b2a33b0e5 8565:0e12c4aca3ab
970 970
971 ngx_memcpy(token, key, NGX_QUIC_SR_TOKEN_LEN); 971 ngx_memcpy(token, key, NGX_QUIC_SR_TOKEN_LEN);
972 972
973 #if (NGX_DEBUG) 973 #if (NGX_DEBUG)
974 ngx_quic_hexdump(c->log, "quic stateless reset token", token, 974 ngx_quic_hexdump(c->log, "quic stateless reset token", token,
975 NGX_QUIC_SR_TOKEN_LEN); 975 (size_t) NGX_QUIC_SR_TOKEN_LEN);
976 #endif 976 #endif
977 977
978 return NGX_OK; 978 return NGX_OK;
979 } 979 }
980 980