comparison src/event/ngx_event_quic_transport.h @ 7824:a5141e6b3214 quic

Fixed includes in quic headers.
author Roman Arutyunyan <arut@nginx.com>
date Tue, 21 Apr 2020 12:06:24 +0300
parents 76e8ec502c69
children 262396242352
comparison
equal deleted inserted replaced
7823:4e4485793418 7824:a5141e6b3214
6 6
7 #ifndef _NGX_EVENT_QUIC_WIRE_H_INCLUDED_ 7 #ifndef _NGX_EVENT_QUIC_WIRE_H_INCLUDED_
8 #define _NGX_EVENT_QUIC_WIRE_H_INCLUDED_ 8 #define _NGX_EVENT_QUIC_WIRE_H_INCLUDED_
9 9
10 10
11 #include <ngx_event_openssl.h> 11 #include <ngx_config.h>
12 #include <ngx_core.h>
12 13
13 14
14 #define ngx_quic_long_pkt(flags) ((flags) & 0x80) /* 17.2 */ 15 #define ngx_quic_long_pkt(flags) ((flags) & 0x80) /* 17.2 */
15 #define ngx_quic_short_pkt(flags) (((flags) & 0x80) == 0) /* 17.3 */ 16 #define ngx_quic_short_pkt(flags) (((flags) & 0x80) == 0) /* 17.3 */
16 17