22、 // 记录日志文件信息 4. 5. ngx_atomic_uint_t connection; //引用该日志对象的连接数 6. 7. ngx_log_handler_pt handler; //输出日志时的回调函数,日志等级不为debug时有效。 8. void *data; //配合handler成员使用,给handler回调函数传数据 9. 10. /* 11. * we declare "action" as "char *" because the actions
23、 are usually 12. * the static strings and in the "u_char *" case we have to override 13. * their types all the time 14. */ 1. 2. char *action; //记录日志前,nginx当前的动作(即正在做什么) 3. 4. ngx_log_t *next; //指向下一个日志对象 5.};