comparison src/core/ngx_config_command.h @ 10:4f3879d9b6f6

nginx-0.0.1-2002-09-11-19:18:33 import
author Igor Sysoev <igor@sysoev.ru>
date Wed, 11 Sep 2002 15:18:33 +0000
parents
children 2aba961a1d34
comparison
equal deleted inserted replaced
9:6f58641241bb 10:4f3879d9b6f6
1 #ifndef _NGX_HTTP_CONFIG_COMMAND_H_INCLUDED_
2 #define _NGX_HTTP_CONFIG_COMMAND_H_INCLUDED_
3
4
5 #define NGX_CONF_TAKE1 0
6 #define NGX_CONF_ITERATE 0
7
8 #define NGX_CONF_UNSET -1
9
10 typedef struct {
11 char *name;
12 char *(*set)();
13 int offset;
14 int zone;
15 int type;
16 char *description;
17 } ngx_command_t;
18
19 char *ngx_conf_set_size_slot(char *conf, int offset, char *value);
20
21
22 #endif _NGX_HTTP_CONFIG_COMMAND_H_INCLUDED_