diff options
author | Igor Sysoev <igor@sysoev.ru> | 2002-09-11 15:18:33 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2002-09-11 15:18:33 +0000 |
commit | e0268b95c6dea75f88d3874213b1aa0cd0aba692 (patch) | |
tree | 49f871f82639d76c81618bff00546591bfef37d9 /src/core/ngx_config_command.h | |
parent | 96f8377fd89b8735027ccfebea8ad9e77f40f51c (diff) | |
download | nginx-e0268b95c6dea75f88d3874213b1aa0cd0aba692.tar.gz nginx-e0268b95c6dea75f88d3874213b1aa0cd0aba692.zip |
nginx-0.0.1-2002-09-11-19:18:33 import
Diffstat (limited to 'src/core/ngx_config_command.h')
-rw-r--r-- | src/core/ngx_config_command.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/core/ngx_config_command.h b/src/core/ngx_config_command.h new file mode 100644 index 000000000..0990d44e4 --- /dev/null +++ b/src/core/ngx_config_command.h @@ -0,0 +1,22 @@ +#ifndef _NGX_HTTP_CONFIG_COMMAND_H_INCLUDED_ +#define _NGX_HTTP_CONFIG_COMMAND_H_INCLUDED_ + + +#define NGX_CONF_TAKE1 0 +#define NGX_CONF_ITERATE 0 + +#define NGX_CONF_UNSET -1 + +typedef struct { + char *name; + char *(*set)(); + int offset; + int zone; + int type; + char *description; +} ngx_command_t; + +char *ngx_conf_set_size_slot(char *conf, int offset, char *value); + + +#endif _NGX_HTTP_CONFIG_COMMAND_H_INCLUDED_ |