nginx/src/core/nginx.h

21 lines
476 B
C
Raw Normal View History

#ifndef _NGINX_H_INCLUDED_
#define _NGINX_H_INCLUDED_
2004-02-11 00:23:38 +08:00
#define NGINX_VER "nginx/0.0.2"
#define NGINX_CONF "nginx.conf"
#define NGINX_PID "nginx.pid"
#define NGINX_NEW_PID_EXT ".newbin"
#define NGINX_NEW_PID NGINX_PID NGINX_NEW_PID_EXT
2004-03-10 03:47:07 +08:00
#define NGINX_VAR "NGINX"
2004-02-11 00:23:38 +08:00
extern ngx_module_t ngx_core_module;
2002-12-15 14:25:09 +08:00
2004-02-24 04:57:12 +08:00
extern ngx_atomic_t ngx_connection_counter;
2003-07-11 23:17:50 +08:00
2004-02-11 00:23:38 +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_ */