diff options
author | Roman Arutyunyan <arut@nginx.com> | 2023-05-14 12:30:11 +0400 |
---|---|---|
committer | Roman Arutyunyan <arut@nginx.com> | 2023-05-14 12:30:11 +0400 |
commit | 0a3c79614521d7612b63eff4e09c25ed219fb65b (patch) | |
tree | c2a0827a7e914aacd3b6924e233fbedbffcc319f /src/event/quic/ngx_event_quic_socket.c | |
parent | 779bfcff5f7544494c7c85ac73f41a033e749528 (diff) | |
download | nginx-0a3c79614521d7612b63eff4e09c25ed219fb65b.tar.gz nginx-0a3c79614521d7612b63eff4e09c25ed219fb65b.zip |
Common tree insert function for QUIC and UDP connections.
Previously, ngx_udp_rbtree_insert_value() was used for plain UDP and
ngx_quic_rbtree_insert_value() was used for QUIC. Because of this it was
impossible to initialize connection tree in ngx_create_listening() since
this function is not aware what kind of listening it creates.
Now ngx_udp_rbtree_insert_value() is used for both QUIC and UDP. To make
is possible, a generic key field is added to ngx_udp_connection_t. It keeps
client address for UDP and connection ID for QUIC.
Diffstat (limited to 'src/event/quic/ngx_event_quic_socket.c')
-rw-r--r-- | src/event/quic/ngx_event_quic_socket.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/event/quic/ngx_event_quic_socket.c b/src/event/quic/ngx_event_quic_socket.c index 6813fcd0a..6652523b7 100644 --- a/src/event/quic/ngx_event_quic_socket.c +++ b/src/event/quic/ngx_event_quic_socket.c @@ -179,6 +179,7 @@ ngx_quic_listen(ngx_connection_t *c, ngx_quic_connection_t *qc, qsock->udp.connection = c; qsock->udp.node.key = ngx_crc32_long(id.data, id.len); + qsock->udp.key = id; ngx_rbtree_insert(&c->listening->rbtree, &qsock->udp.node); |