comparison src/event/quic/ngx_event_quic_migration.h @ 9197:cc16989c6d61

QUIC: fixed format specifier after a6f79f044de5.
author Sergey Kandaurov <pluknet@nginx.com>
date Sat, 16 Dec 2023 03:40:01 +0400
parents 58afcd72446f
children
comparison
equal deleted inserted replaced
9196:6c8595b77e66 9197:cc16989c6d61
17 #define NGX_QUIC_PATH_ACTIVE 1 17 #define NGX_QUIC_PATH_ACTIVE 1
18 #define NGX_QUIC_PATH_BACKUP 2 18 #define NGX_QUIC_PATH_BACKUP 2
19 19
20 #define ngx_quic_path_dbg(c, msg, path) \ 20 #define ngx_quic_path_dbg(c, msg, path) \
21 ngx_log_debug7(NGX_LOG_DEBUG_EVENT, c->log, 0, \ 21 ngx_log_debug7(NGX_LOG_DEBUG_EVENT, c->log, 0, \
22 "quic path seq:%uL %s tx:%O rx:%O valid:%ui st:%d mtu:%uz",\ 22 "quic path seq:%uL %s tx:%O rx:%O valid:%d st:%d mtu:%uz", \
23 path->seqnum, msg, path->sent, path->received, \ 23 path->seqnum, msg, path->sent, path->received, \
24 path->validated, path->state, path->mtu); 24 path->validated, path->state, path->mtu);
25 25
26 ngx_int_t ngx_quic_handle_path_challenge_frame(ngx_connection_t *c, 26 ngx_int_t ngx_quic_handle_path_challenge_frame(ngx_connection_t *c,
27 ngx_quic_header_t *pkt, ngx_quic_path_challenge_frame_t *f); 27 ngx_quic_header_t *pkt, ngx_quic_path_challenge_frame_t *f);