comparison src/core/nginx.h @ 256:8e39cab6abd5

nginx-0.0.2-2004-02-10-19:23:38 import
author Igor Sysoev <igor@sysoev.ru>
date Tue, 10 Feb 2004 16:23:38 +0000
parents e885208c518b
children 5238e93961a1
comparison
equal deleted inserted replaced
255:e6938ca7331a 256:8e39cab6abd5
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.2" 5 #define NGINX_VER "nginx/0.0.2"
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 #define NGINX_NEW_PID NGINX_PID ".newbin" 8 #define NGINX_NEW_PID_EXT ".newbin"
9 #define NGINX_NEW_PID NGINX_PID NGINX_NEW_PID_EXT
9 10
10 #define NGINX_VAR "NGINX=" 11 #define NGINX_VAR "NGINX="
11 #define NGINX_VAR_LEN (sizeof(NGINX_VAR) - 1) 12 #define NGINX_VAR_LEN (sizeof(NGINX_VAR) - 1)
12 13
13 extern ngx_module_t ngx_core_module; 14 extern ngx_module_t ngx_core_module;
14 15
15 extern ngx_uint_t ngx_connection_counter; 16 extern ngx_uint_t ngx_connection_counter;
16 17
17 extern ngx_int_t ngx_process; 18 extern ngx_int_t ngx_process;
18 19
19 20
20 #endif /* _NGINX_H_INCLUDED_ */ 21 #endif /* _NGINX_H_INCLUDED_ */