comparison src/http/modules/proxy/ngx_http_proxy_handler.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 5cfd65b8b0a7
comparison
equal deleted inserted replaced
291:117ccc7c4055 292:a472bfb778b3
182 ngx_uint_t parse_state; 182 ngx_uint_t parse_state;
183 183
184 ngx_http_proxy_state_t *state; 184 ngx_http_proxy_state_t *state;
185 ngx_array_t states; /* of ngx_http_proxy_state_t */ 185 ngx_array_t states; /* of ngx_http_proxy_state_t */
186 186
187 u_char *action; 187 /*
188 * we declare "action" as "char *" because the actions are usually
189 * the static strings and in the "u_char *" case we have to override
190 * all the time their types
191 */
192
193 char *action;
188 ngx_http_log_ctx_t *saved_ctx; 194 ngx_http_log_ctx_t *saved_ctx;
189 ngx_log_handler_pt saved_handler; 195 ngx_log_handler_pt saved_handler;
190 }; 196 };
191 197
192 198