diff src/event/ngx_event_quic.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 b28ea685a56e
children 38c0898b6df7
line wrap: on
line diff
--- a/src/event/ngx_event_quic.h
+++ b/src/event/ngx_event_quic.h
@@ -10,11 +10,20 @@
 
 #include <ngx_event_openssl.h>
 
+struct ngx_quic_stream_s {
+    uint64_t            id;
+    ngx_uint_t          unidirectional:1;
+    ngx_connection_t   *parent;
+};
+
 /* TODO: get rid somehow of ssl argument? */
 ngx_int_t ngx_quic_input(ngx_connection_t *c, ngx_ssl_t *ssl, ngx_buf_t *b);
 ngx_int_t ngx_quic_output(ngx_connection_t *c);
 
 void ngx_quic_init_ssl_methods(SSL_CTX* ctx);
 
+void ngx_quic_run(ngx_connection_t *c, ngx_ssl_t *ssl, ngx_msec_t timeout,
+    ngx_connection_handler_pt handler);
+ngx_connection_t *ngx_quic_create_uni_stream(ngx_connection_t *c);
 
 #endif /* _NGX_EVENT_QUIC_H_INCLUDED_ */