2002-12-19 04:08:55 -03:00
|
|
|
#ifndef _NGX_HTTP_CONFIG_FILE_H_INCLUDED_
|
|
|
|
#define _NGX_HTTP_CONFIG_FILE_H_INCLUDED_
|
|
|
|
|
|
|
|
|
|
|
|
#include <ngx_config.h>
|
|
|
|
#include <ngx_files.h>
|
|
|
|
#include <ngx_log.h>
|
|
|
|
#include <ngx_file.h>
|
2002-12-26 04:24:21 -03:00
|
|
|
#include <ngx_string.h>
|
2002-12-19 04:08:55 -03:00
|
|
|
#include <ngx_alloc.h>
|
|
|
|
#include <ngx_hunk.h>
|
|
|
|
#include <ngx_array.h>
|
|
|
|
|
2002-12-26 04:24:21 -03:00
|
|
|
|
2002-12-19 04:08:55 -03:00
|
|
|
#define NGX_CONF_NOARGS 1
|
|
|
|
#define NGX_CONF_TAKE1 2
|
|
|
|
#define NGX_CONF_TAKE2 4
|
|
|
|
|
2002-12-26 13:26:23 -03:00
|
|
|
#define NGX_CONF_ANY 0x10000
|
|
|
|
#define NGX_CONF_BLOCK 0x20000
|
2002-12-19 04:08:55 -03:00
|
|
|
|
|
|
|
#define NGX_CONF_UNSET -1
|
|
|
|
|
|
|
|
|
2002-12-26 04:24:21 -03:00
|
|
|
#define NGX_CONF_BLOCK_DONE 1
|
|
|
|
#define NGX_CONF_FILE_DONE 2
|
|
|
|
|
|
|
|
|
2002-12-27 04:27:47 -03:00
|
|
|
#define NGX_CONF_ERROR (char *) -1
|
|
|
|
|
2002-12-26 04:24:21 -03:00
|
|
|
typedef struct ngx_conf_s ngx_conf_t;
|
|
|
|
|
|
|
|
|
2002-12-26 13:26:23 -03:00
|
|
|
typedef struct ngx_command_s ngx_command_t;
|
|
|
|
struct ngx_command_s {
|
2002-12-26 04:24:21 -03:00
|
|
|
ngx_str_t name;
|
|
|
|
int type;
|
2002-12-26 13:26:23 -03:00
|
|
|
char *(*set)(ngx_conf_t *cf, ngx_command_t *cmd, char *conf);
|
|
|
|
int conf;
|
|
|
|
int offset;
|
|
|
|
};
|
2002-12-26 04:24:21 -03:00
|
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
void *ctx;
|
|
|
|
ngx_command_t *commands;
|
|
|
|
int type;
|
|
|
|
int (*init_module)(ngx_pool_t *p);
|
|
|
|
} ngx_module_t;
|
2002-12-23 03:29:22 -03:00
|
|
|
|
|
|
|
|
2002-12-19 04:08:55 -03:00
|
|
|
typedef struct {
|
|
|
|
ngx_file_t file;
|
|
|
|
ngx_hunk_t *hunk;
|
|
|
|
int line;
|
|
|
|
} ngx_conf_file_t;
|
|
|
|
|
2002-12-26 04:24:21 -03:00
|
|
|
|
2002-12-19 04:08:55 -03:00
|
|
|
struct ngx_conf_s {
|
|
|
|
char *name;
|
|
|
|
ngx_array_t *args;
|
|
|
|
|
|
|
|
ngx_pool_t *pool;
|
|
|
|
ngx_conf_file_t *conf_file;
|
|
|
|
ngx_log_t *log;
|
|
|
|
|
|
|
|
void *ctx;
|
2002-12-26 13:26:23 -03:00
|
|
|
int type;
|
2002-12-19 04:08:55 -03:00
|
|
|
int (*handler)(ngx_conf_t *cf);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2002-12-26 04:24:21 -03:00
|
|
|
int ngx_conf_parse(ngx_conf_t *cf, ngx_str_t *filename);
|
2002-12-24 14:30:59 -03:00
|
|
|
|
|
|
|
|
2002-12-26 13:26:23 -03:00
|
|
|
char *ngx_conf_set_size_slot(ngx_conf_t *cf, ngx_command_t *cmd, char *conf);
|
|
|
|
char *ngx_conf_set_time_slot(ngx_conf_t *cf, ngx_command_t *cmd, char *conf);
|
|
|
|
|
|
|
|
|
|
|
|
extern ngx_module_t *ngx_modules[];
|
2002-12-19 04:08:55 -03:00
|
|
|
|
|
|
|
|
|
|
|
#endif _NGX_HTTP_CONFIG_FILE_H_INCLUDED_
|