summaryrefslogtreecommitdiffhomepage
path: root/src/core/nginx.h
blob: 99423d32a969219b239fc0b6bb2777f6e9c80f7a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef _NGINX_H_INCLUDED_
#define _NGINX_H_INCLUDED_


#define NGINX_VER      "nginx/0.0.2"
#define NGINX_CONF     "nginx.conf"
#define NGINX_PID      "nginx.pid"
#define NGINX_NEW_PID  NGINX_PID ".newbin"

#define NGINX_VAR      "NGINX="
#define NGINX_VAR_LEN  (sizeof(NGINX_VAR) - 1)

extern ngx_module_t    ngx_core_module;

extern ngx_uint_t      ngx_connection_counter;

extern ngx_int_t       ngx_process;


#endif /* _NGINX_H_INCLUDED_ */