nginx在main函数中首先对log进行初始化,将配置文件中的log文件名打开,将打开log文件句柄等相应的属性存在log变量中,本人觉得该代码写的挺好,有借鉴之处,因而在次贴出。
struct ngx_log_s {
ngx_uint_t log_level;ngx_open_file_t *file;
ngx_atomic_uint_t connection;
ngx_log_handler_pt handler;
void *data;
/*
* we declare "action" as "char *" because the actions are usually
* the static strings and in the "u_char *" case we have to override
* their types all the time
*/
ngx_log_t *next;
};(src/core/ngx_log.h)

本文主要分析nginx源码中的日志初始化过程。在main函数中,nginx会读取配置文件并打开log文件,相关句柄和属性存储于log结构体中,这一部分的实现值得学习和参考。
7209

被折叠的 条评论
为什么被折叠?



