2013年7月25日

nginx 日志模块

摘要: ngx_http_log_module.c数据结构typedef struct { void **main_conf; void **srv_conf; void **loc_conf;} ngx_http_conf_ctx_t;typedef struct ngx_http_log_op_s ngx_http_log_op_t;typedef u_char *(*ngx_http_log_op_run_pt) (ngx_http_request_t *r, u_char *buf, ngx_http_log_op_t ... 阅读全文

posted @ 2013-07-25 17:07 andyhe 阅读(592) 评论(0) 推荐(0) 编辑

nginx 源码阅读 core

摘要: ngx_config.h数据对齐#define ngx_align(d, a) (((d) + (a - 1)) & ~(a - 1))ngx_core.h#define ngx_abs(value) (((value) >= 0) ? (value) : - (value))#define ngx_max(val1, val2) ((val1 val2) ? (val2) : (val1))数据结构ngx_arraytypedef struct { void *elts; ngx_uint_t nelts; size_t size; ... 阅读全文

posted @ 2013-07-25 10:54 andyhe 阅读(263) 评论(0) 推荐(0) 编辑

导航