diff src/core/ngx_core.h @ 8208:4ae9ac69ab93 quic

HTTP/QUIC interface reworked. - events handling moved into src/event/ngx_event_quic.c - http invokes once ngx_quic_run() and passes stream callback (diff to original http_request.c is now minimal) - streams are stored in rbtree using ID as a key - when a new stream is registered, appropriate callback is called - ngx_quic_stream_t type represents STREAM and stored in c->qs
author Vladimir Homutov <vl@nginx.com>
date Thu, 12 Mar 2020 16:54:43 +0300
parents 5d91389e0fd3
children 69345a26ba69
line wrap: on
line diff
--- a/src/core/ngx_core.h
+++ b/src/core/ngx_core.h
@@ -28,6 +28,7 @@ typedef struct ngx_thread_task_s      ng
 typedef struct ngx_ssl_s              ngx_ssl_t;
 typedef struct ngx_proxy_protocol_s   ngx_proxy_protocol_t;
 typedef struct ngx_quic_connection_s  ngx_quic_connection_t;
+typedef struct ngx_quic_stream_s      ngx_quic_stream_t;
 typedef struct ngx_ssl_connection_s   ngx_ssl_connection_t;
 typedef struct ngx_udp_connection_s   ngx_udp_connection_t;