comparison src/core/nginx.h @ 218:05592fd7a436

nginx-0.0.1-2004-01-05-23:55:48 import
author Igor Sysoev <igor@sysoev.ru>
date Mon, 05 Jan 2004 20:55:48 +0000
parents 00cafae0bdf1
children 4f81b931e9ff
comparison
equal deleted inserted replaced
217:c5d1cdcb04ec 218:05592fd7a436
1 #ifndef _NGINX_H_INCLUDED_ 1 #ifndef _NGINX_H_INCLUDED_
2 #define _NGINX_H_INCLUDED_ 2 #define _NGINX_H_INCLUDED_
3 3
4 4
5 #define NGINX_VER "nginx/0.0.1" 5 #define NGINX_VER "nginx/0.0.1"
6 #define NGINX_CONF "nginx.conf" 6 #define NGINX_CONF "nginx.conf"
7 #define NGINX_PID "nginx.pid" 7 #define NGINX_PID "nginx.pid"
8 8
9 #define NGINX_VAR "NGINX="
10 #define NGINX_VAR_LEN (sizeof(NGINX_VAR) - 1)
9 11
10 extern int ngx_max_module; 12 extern ngx_module_t ngx_core_module;
11 extern u_int ngx_connection_counter;
12 13
13 extern ngx_module_t ngx_core_module; 14 extern ngx_uint_t ngx_connection_counter;
14 15
16 extern ngx_int_t ngx_master;
17 extern ngx_int_t ngx_single;
15 18
16 19
17 #endif /* _NGINX_H_INCLUDED_ */ 20 #endif /* _NGINX_H_INCLUDED_ */