comparison src/http/ngx_http_core_module.h @ 1489:56f1ea5baabb

u_char* is enough to keep file name
author Igor Sysoev <igor@sysoev.ru>
date Sat, 15 Sep 2007 17:11:06 +0000
parents 223e92651ca5
children aa1835ad46ba
comparison
equal deleted inserted replaced
1488:0e66eabd18b5 1489:56f1ea5baabb
36 typedef struct { 36 typedef struct {
37 in_addr_t addr; 37 in_addr_t addr;
38 in_port_t port; 38 in_port_t port;
39 int family; 39 int family;
40 40
41 ngx_str_t file_name; 41 u_char *file_name;
42 ngx_int_t line; 42 ngx_uint_t line;
43 43
44 ngx_http_listen_conf_t conf; 44 ngx_http_listen_conf_t conf;
45 } ngx_http_listen_t; 45 } ngx_http_listen_t;
46 46
47 47