comparison src/core/ngx_conf_file.h @ 106:9f9de4deda7e

nginx-0.0.1-2003-06-26-19:35:36 import
author Igor Sysoev <igor@sysoev.ru>
date Thu, 26 Jun 2003 15:35:36 +0000
parents 00bee6e7b485
children b5be4b0448d3
comparison
equal deleted inserted replaced
105:00bee6e7b485 106:9f9de4deda7e
69 typedef struct { 69 typedef struct {
70 ngx_file_t file; 70 ngx_file_t file;
71 ngx_hunk_t *hunk; 71 ngx_hunk_t *hunk;
72 int line; 72 int line;
73 } ngx_conf_file_t; 73 } ngx_conf_file_t;
74
75
76 struct ngx_open_file_s {
77 ngx_fd_t fd;
78 ngx_str_t name;
79 };
80
81
82 typedef struct {
83 ngx_pool_t *pool;
84 ngx_log_t *log;
85 ngx_array_t listening;
86 ngx_array_t files;
87 } ngx_cycle_t;
74 88
75 89
76 typedef char *(*ngx_conf_handler_pt)(ngx_conf_t *cf, 90 typedef char *(*ngx_conf_handler_pt)(ngx_conf_t *cf,
77 ngx_command_t *dummy, void *conf); 91 ngx_command_t *dummy, void *conf);
78 92