nginx/src/core/nginx.h

21 lines
447 B
C
Raw Normal View History

#ifndef _NGINX_H_INCLUDED_
#define _NGINX_H_INCLUDED_
2004-02-03 05:19:52 +08:00
#define NGINX_VER "nginx/0.0.2"
2004-01-06 04:55:48 +08:00
#define NGINX_CONF "nginx.conf"
#define NGINX_PID "nginx.pid"
2004-01-09 05:02:06 +08:00
#define NGINX_NEW_PID NGINX_PID ".newbin"
2004-01-06 04:55:48 +08:00
#define NGINX_VAR "NGINX="
#define NGINX_VAR_LEN (sizeof(NGINX_VAR) - 1)
2004-01-06 04:55:48 +08:00
extern ngx_module_t ngx_core_module;
2002-12-15 14:25:09 +08:00
2004-01-06 04:55:48 +08:00
extern ngx_uint_t ngx_connection_counter;
2003-07-11 23:17:50 +08:00
2004-01-08 16:47:17 +08:00
extern ngx_int_t ngx_process;
2003-07-11 23:17:50 +08:00
2002-12-15 14:25:09 +08:00
#endif /* _NGINX_H_INCLUDED_ */