blob: 6372b9add20d883b8b45e4cbbcd482b690092c48 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef _NGX_SERVER_H_INCLUDED_
#define _NGX_SERVER_H_INCLUDED_
#include <ngx_config.h>
#include <ngx_types.h>
#include <ngx_alloc.h>
typedef struct {
int log_level;
ngx_pool_t *pool;
int (*handler)(void *data);
int buff_size;
} ngx_server_t;
#endif /* _NGX_SERVER_H_INCLUDED_ */
|