Nginx 事件模块
概述
extern ngx_module_t ngx_events_module;
extern ngx_module_t ngx_event_core_module;
extern ngx_module_t ngx_epoll_module;
事件模块接口
ngx_event_module_t 结构体
typedef struct {
ngx_str_t *name;
void *(*create_conf)(ngx_cycle_t *cycle);
char *(*init_conf)(ngx_cycle_t *cycle, void *conf);
ngx_event_actions_t actions;
} ngx_event_module_t;
ngx_event_t 结构体
ngx_connection_t 结构体
ngx_events_module 核心模块
ngx_events_module 核心模块的定义
所有事件模块的配置项管理
ngx_event_core_module 事件模块
ngx_event_conf_t 结构体
ngx_event_core_module 事件模块的定义
Last updated