nginx/src/core/nginx.h

22 lines
528 B
C
Raw Normal View History

#ifndef _NGINX_H_INCLUDED_
#define _NGINX_H_INCLUDED_
2004-02-10 10:23:38 -06: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-10 10:23:38 -06:00
#define NGINX_VAR "NGINX="
#define NGINX_VAR_LEN (sizeof(NGINX_VAR) - 1)
2004-02-10 10:23:38 -06:00
extern ngx_module_t ngx_core_module;
2002-12-15 00:25:09 -06:00
2004-02-23 14:57:12 -06:00
extern ngx_atomic_t ngx_connection_counter;
2003-07-11 10:17:50 -05:00
2004-02-10 10:23:38 -06:00
extern ngx_int_t ngx_process;
2003-07-11 10:17:50 -05:00
2002-12-15 00:25:09 -06:00
#endif /* _NGINX_H_INCLUDED_ */