comparison src/event/ngx_event_quic.h @ 8167:5d91389e0fd3 quic

Initial QUIC support in http.
author Sergey Kandaurov <pluknet@nginx.com>
date Fri, 28 Feb 2020 13:09:51 +0300
parents
children b507592c15a7
comparison
equal deleted inserted replaced
8166:7999d3fbb765 8167:5d91389e0fd3
1
2 /*
3 *
4 */
5
6
7 #ifndef _NGX_EVENT_QUIC_H_INCLUDED_
8 #define _NGX_EVENT_QUIC_H_INCLUDED_
9
10
11 struct ngx_quic_connection_s {
12 ngx_str_t scid;
13 ngx_str_t dcid;
14 ngx_str_t token;
15
16 ngx_str_t client_in;
17 ngx_str_t client_in_key;
18 ngx_str_t client_in_iv;
19 ngx_str_t client_in_hp;
20
21 size_t handshake_secret_len;
22 uint8_t *handshake_read_secret;
23 uint8_t *handshake_write_secret;
24
25 size_t application_secret_len;
26 uint8_t *application_read_secret;
27 uint8_t *application_write_secret;
28 };
29
30
31 #endif /* _NGX_EVENT_QUIC_H_INCLUDED_ */