nginx/src/core/nginx.h

22 lines
528 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-02-11 00:23:38 +08:00
#define NGINX_VAR "NGINX="
#define NGINX_VAR_LEN (sizeof(NGINX_VAR) - 1)
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-11 00:23:38 +08:00
extern ngx_uint_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_ */