comparison src/event/ngx_event_quic.h @ 8215:38c0898b6df7 quic

HTTP/3.
author Roman Arutyunyan <arut@nginx.com>
date Fri, 13 Mar 2020 19:36:33 +0300
parents 4ae9ac69ab93
children 69345a26ba69
comparison
equal deleted inserted replaced
8214:6fd2cce50fe2 8215:38c0898b6df7
12 12
13 struct ngx_quic_stream_s { 13 struct ngx_quic_stream_s {
14 uint64_t id; 14 uint64_t id;
15 ngx_uint_t unidirectional:1; 15 ngx_uint_t unidirectional:1;
16 ngx_connection_t *parent; 16 ngx_connection_t *parent;
17 void *data;
17 }; 18 };
18 19
19 /* TODO: get rid somehow of ssl argument? */ 20 /* TODO: get rid somehow of ssl argument? */
20 ngx_int_t ngx_quic_input(ngx_connection_t *c, ngx_ssl_t *ssl, ngx_buf_t *b); 21 ngx_int_t ngx_quic_input(ngx_connection_t *c, ngx_ssl_t *ssl, ngx_buf_t *b);
21 ngx_int_t ngx_quic_output(ngx_connection_t *c); 22 ngx_int_t ngx_quic_output(ngx_connection_t *c);