comparison src/core/ngx_core.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 06b01840bd42
children 4ae9ac69ab93
comparison
equal deleted inserted replaced
8166:7999d3fbb765 8167:5d91389e0fd3
10 10
11 11
12 #include <ngx_config.h> 12 #include <ngx_config.h>
13 13
14 14
15 typedef struct ngx_module_s ngx_module_t; 15 typedef struct ngx_module_s ngx_module_t;
16 typedef struct ngx_conf_s ngx_conf_t; 16 typedef struct ngx_conf_s ngx_conf_t;
17 typedef struct ngx_cycle_s ngx_cycle_t; 17 typedef struct ngx_cycle_s ngx_cycle_t;
18 typedef struct ngx_pool_s ngx_pool_t; 18 typedef struct ngx_pool_s ngx_pool_t;
19 typedef struct ngx_chain_s ngx_chain_t; 19 typedef struct ngx_chain_s ngx_chain_t;
20 typedef struct ngx_log_s ngx_log_t; 20 typedef struct ngx_log_s ngx_log_t;
21 typedef struct ngx_open_file_s ngx_open_file_t; 21 typedef struct ngx_open_file_s ngx_open_file_t;
22 typedef struct ngx_command_s ngx_command_t; 22 typedef struct ngx_command_s ngx_command_t;
23 typedef struct ngx_file_s ngx_file_t; 23 typedef struct ngx_file_s ngx_file_t;
24 typedef struct ngx_event_s ngx_event_t; 24 typedef struct ngx_event_s ngx_event_t;
25 typedef struct ngx_event_aio_s ngx_event_aio_t; 25 typedef struct ngx_event_aio_s ngx_event_aio_t;
26 typedef struct ngx_connection_s ngx_connection_t; 26 typedef struct ngx_connection_s ngx_connection_t;
27 typedef struct ngx_thread_task_s ngx_thread_task_t; 27 typedef struct ngx_thread_task_s ngx_thread_task_t;
28 typedef struct ngx_ssl_s ngx_ssl_t; 28 typedef struct ngx_ssl_s ngx_ssl_t;
29 typedef struct ngx_proxy_protocol_s ngx_proxy_protocol_t; 29 typedef struct ngx_proxy_protocol_s ngx_proxy_protocol_t;
30 typedef struct ngx_ssl_connection_s ngx_ssl_connection_t; 30 typedef struct ngx_quic_connection_s ngx_quic_connection_t;
31 typedef struct ngx_udp_connection_s ngx_udp_connection_t; 31 typedef struct ngx_ssl_connection_s ngx_ssl_connection_t;
32 typedef struct ngx_udp_connection_s ngx_udp_connection_t;
32 33
33 typedef void (*ngx_event_handler_pt)(ngx_event_t *ev); 34 typedef void (*ngx_event_handler_pt)(ngx_event_t *ev);
34 typedef void (*ngx_connection_handler_pt)(ngx_connection_t *c); 35 typedef void (*ngx_connection_handler_pt)(ngx_connection_t *c);
35 36
36 37
80 #include <ngx_inet.h> 81 #include <ngx_inet.h>
81 #include <ngx_cycle.h> 82 #include <ngx_cycle.h>
82 #include <ngx_resolver.h> 83 #include <ngx_resolver.h>
83 #if (NGX_OPENSSL) 84 #if (NGX_OPENSSL)
84 #include <ngx_event_openssl.h> 85 #include <ngx_event_openssl.h>
86 #include <ngx_event_quic.h>
85 #endif 87 #endif
86 #include <ngx_process_cycle.h> 88 #include <ngx_process_cycle.h>
87 #include <ngx_conf_file.h> 89 #include <ngx_conf_file.h>
88 #include <ngx_module.h> 90 #include <ngx_module.h>
89 #include <ngx_open_file_cache.h> 91 #include <ngx_open_file_cache.h>