diff options
| author | Roman Arutyunyan <arut@nginx.com> | 2022-04-20 16:01:17 +0400 |
|---|---|---|
| committer | Roman Arutyunyan <arut@nginx.com> | 2022-04-20 16:01:17 +0400 |
| commit | 9d81ef744cdaacf1e52bcaec4224d375af5ba59b (patch) | |
| tree | db3f8a9fc1381a2c848d934fd1c7f9bbaf1a9dca /src/event/quic/ngx_event_quic.h | |
| parent | c24c27bb074b571fc9e9d75e19be31b83c69c253 (diff) | |
| download | nginx-9d81ef744cdaacf1e52bcaec4224d375af5ba59b.tar.gz nginx-9d81ef744cdaacf1e52bcaec4224d375af5ba59b.tar.bz2 | |
QUIC: separate UDP framework for QUIC.
Previously, QUIC used the existing UDP framework, which was created for UDP in
Stream. However the way QUIC connections are created and looked up is different
from the way UDP connections in Stream are created and looked up. Now these
two implementations are decoupled.
Diffstat (limited to 'src/event/quic/ngx_event_quic.h')
| -rw-r--r-- | src/event/quic/ngx_event_quic.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/event/quic/ngx_event_quic.h b/src/event/quic/ngx_event_quic.h index 903b690b9..92c9ecae0 100644 --- a/src/event/quic/ngx_event_quic.h +++ b/src/event/quic/ngx_event_quic.h @@ -102,6 +102,9 @@ struct ngx_quic_stream_s { }; +void ngx_quic_recvmsg(ngx_event_t *ev); +void ngx_quic_rbtree_insert_value(ngx_rbtree_node_t *temp, + ngx_rbtree_node_t *node, ngx_rbtree_node_t *sentinel); void ngx_quic_run(ngx_connection_t *c, ngx_quic_conf_t *conf); ngx_connection_t *ngx_quic_open_stream(ngx_connection_t *c, ngx_uint_t bidi); void ngx_quic_finalize_connection(ngx_connection_t *c, ngx_uint_t err, |
