diff options
| author | Vladimir Homutov <vl@nginx.com> | 2022-01-28 14:57:33 +0300 |
|---|---|---|
| committer | Vladimir Homutov <vl@nginx.com> | 2022-01-28 14:57:33 +0300 |
| commit | 26bc237677f1baad3ab565b70cc951f8a3b6ad90 (patch) | |
| tree | 1387fc74fd4c0d8843a367313634731fc38ce65c /src/event/quic/ngx_event_quic_connid.c | |
| parent | e72168a9ea93bde9a7a17613654fb1f4826d65dd (diff) | |
| download | nginx-26bc237677f1baad3ab565b70cc951f8a3b6ad90.tar.gz nginx-26bc237677f1baad3ab565b70cc951f8a3b6ad90.tar.bz2 | |
QUIC: got rid of hash symbol in backup and logging.
Now all objectes with sequence number (i.e. sockets, connection ids and
paths) are logged as "foo seq:N".
Diffstat (limited to 'src/event/quic/ngx_event_quic_connid.c')
| -rw-r--r-- | src/event/quic/ngx_event_quic_connid.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/event/quic/ngx_event_quic_connid.c b/src/event/quic/ngx_event_quic_connid.c index 32926a022..f50868205 100644 --- a/src/event/quic/ngx_event_quic_connid.c +++ b/src/event/quic/ngx_event_quic_connid.c @@ -308,7 +308,7 @@ ngx_quic_create_client_id(ngx_connection_t *c, ngx_str_t *id, } ngx_log_debug5(NGX_LOG_DEBUG_EVENT, c->log, 0, - "quic cid #%uL received id:%uz:%xV:%*xs", + "quic cid seq:%uL received id:%uz:%xV:%*xs", cid->seqnum, id->len, id, (size_t) NGX_QUIC_SR_TOKEN_LEN, cid->sr_token); @@ -388,7 +388,7 @@ ngx_quic_handle_retire_connection_id_frame(ngx_connection_t *c, } ngx_log_debug1(NGX_LOG_DEBUG_EVENT, c->log, 0, - "quic socket #%uL is retired", qsock->sid.seqnum); + "quic socket seq:%uL is retired", qsock->sid.seqnum); ngx_quic_close_socket(c, qsock); |
