diff src/core/nginx.h @ 218:05592fd7a436

nginx-0.0.1-2004-01-05-23:55:48 import
author Igor Sysoev <igor@sysoev.ru>
date Mon, 05 Jan 2004 20:55:48 +0000
parents 00cafae0bdf1
children 4f81b931e9ff
line wrap: on
line diff
--- a/src/core/nginx.h
+++ b/src/core/nginx.h
@@ -2,16 +2,19 @@
 #define _NGINX_H_INCLUDED_
 
 
-#define  NGINX_VER   "nginx/0.0.1"
-#define  NGINX_CONF  "nginx.conf"
-#define  NGINX_PID   "nginx.pid"
+#define NGINX_VER      "nginx/0.0.1"
+#define NGINX_CONF     "nginx.conf"
+#define NGINX_PID      "nginx.pid"
 
+#define NGINX_VAR      "NGINX="
+#define NGINX_VAR_LEN  (sizeof(NGINX_VAR) - 1)
 
-extern int           ngx_max_module;
-extern u_int         ngx_connection_counter;
+extern ngx_module_t    ngx_core_module;
 
-extern ngx_module_t  ngx_core_module;
+extern ngx_uint_t      ngx_connection_counter;
 
+extern ngx_int_t       ngx_master;
+extern ngx_int_t       ngx_single;
 
 
 #endif /* _NGINX_H_INCLUDED_ */