comparison src/http/ngx_http.h @ 292:a472bfb778b3

nginx-0.0.3-2004-03-17-00:26:01 import
author Igor Sysoev <igor@sysoev.ru>
date Tue, 16 Mar 2004 21:26:01 +0000
parents 87e73f067470
children ee394e997c77
comparison
equal deleted inserted replaced
291:117ccc7c4055 292:a472bfb778b3
21 #include <ngx_http_core_module.h> 21 #include <ngx_http_core_module.h>
22 22
23 23
24 typedef struct { 24 typedef struct {
25 u_int connection; 25 u_int connection;
26 u_char *action; 26
27 /*
28 * we declare "action" as "char *" because the actions are usually
29 * the static strings and in the "u_char *" case we have to override
30 * all the time their types
31 */
32
33 char *action;
27 u_char *client; 34 u_char *client;
28 u_char *url; 35 u_char *url;
29 } ngx_http_log_ctx_t; 36 } ngx_http_log_ctx_t;
30 37
31 38