comparison src/event/ngx_event_quic.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 b52b2a33b0e5
children 9588a2782c62
comparison
equal deleted inserted replaced
8564:b52b2a33b0e5 8565:0e12c4aca3ab
1235 { 1235 {
1236 return NGX_ERROR; 1236 return NGX_ERROR;
1237 } 1237 }
1238 1238
1239 ngx_quic_hexdump(c->log, "quic stateless reset token", 1239 ngx_quic_hexdump(c->log, "quic stateless reset token",
1240 qc->tp.sr_token, NGX_QUIC_SR_TOKEN_LEN); 1240 qc->tp.sr_token, (size_t) NGX_QUIC_SR_TOKEN_LEN);
1241 } 1241 }
1242 1242
1243 len = ngx_quic_create_transport_params(NULL, NULL, &qc->tp, &clen); 1243 len = ngx_quic_create_transport_params(NULL, NULL, &qc->tp, &clen);
1244 /* always succeeds */ 1244 /* always succeeds */
1245 1245