summaryrefslogtreecommitdiffhomepage
path: root/src/event/quic/ngx_event_quic_socket.c
diff options
context:
space:
mode:
authorVladimir Homutov <vl@nginx.com>2022-01-28 14:57:33 +0300
committerVladimir Homutov <vl@nginx.com>2022-01-28 14:57:33 +0300
commit26bc237677f1baad3ab565b70cc951f8a3b6ad90 (patch)
tree1387fc74fd4c0d8843a367313634731fc38ce65c /src/event/quic/ngx_event_quic_socket.c
parente72168a9ea93bde9a7a17613654fb1f4826d65dd (diff)
downloadnginx-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 '')
-rw-r--r--src/event/quic/ngx_event_quic_socket.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/event/quic/ngx_event_quic_socket.c b/src/event/quic/ngx_event_quic_socket.c
index b5d168a7a..44387fd3c 100644
--- a/src/event/quic/ngx_event_quic_socket.c
+++ b/src/event/quic/ngx_event_quic_socket.c
@@ -160,7 +160,7 @@ ngx_quic_close_socket(ngx_connection_t *c, ngx_quic_socket_t *qsock)
qc->nsockets--;
ngx_log_debug2(NGX_LOG_DEBUG_EVENT, c->log, 0,
- "quic socket #%L closed nsock:%ui",
+ "quic socket seq:%L closed nsock:%ui",
(int64_t) qsock->sid.seqnum, qc->nsockets);
}
@@ -185,7 +185,7 @@ ngx_quic_listen(ngx_connection_t *c, ngx_quic_connection_t *qc,
qsock->quic = qc;
ngx_log_debug3(NGX_LOG_DEBUG_EVENT, c->log, 0,
- "quic socket #%L listening at sid:%xV nsock:%ui",
+ "quic socket seq:%L listening at sid:%xV nsock:%ui",
(int64_t) sid->seqnum, &id, qc->nsockets);
return NGX_OK;