comparison src/core/ngx_conf_file.h @ 94:c96cb248dc4b NGINX_0_2_1

nginx 0.2.1 *) Bugfix: if all backend using in load-balancing failed after one error, then nginx may got caught in an endless loop; bug appeared in 0.2.0.
author Igor Sysoev <http://sysoev.ru>
date Fri, 23 Sep 2005 00:00:00 +0400
parents 71c46860eb55
children e85dca77c46a
comparison
equal deleted inserted replaced
93:dc5348c07fbf 94:c96cb248dc4b
95 void *data; 95 void *data;
96 #endif 96 #endif
97 }; 97 };
98 98
99 99
100 #define NGX_MODULE_V1 0, 0, 1, 0, 0, 0, 0 100 #define NGX_MODULE_V1 0, 0, 0, 0, 0, 0, 1
101 #define NGX_MODULE_V1_PADDING 0, 0, 0, 0, 0, 0, 0, 0 101 #define NGX_MODULE_V1_PADDING 0, 0, 0, 0, 0, 0, 0, 0
102 102
103 struct ngx_module_s { 103 struct ngx_module_s {
104 ngx_uint_t ctx_index; 104 ngx_uint_t ctx_index;
105 ngx_uint_t index; 105 ngx_uint_t index;
106 ngx_uint_t version;
107 106
108 ngx_uint_t spare0; 107 ngx_uint_t spare0;
109 ngx_uint_t spare1; 108 ngx_uint_t spare1;
110 ngx_uint_t spare2; 109 ngx_uint_t spare2;
111 ngx_uint_t spare3; 110 ngx_uint_t spare3;
111
112 ngx_uint_t version;
112 113
113 void *ctx; 114 void *ctx;
114 ngx_command_t *commands; 115 ngx_command_t *commands;
115 ngx_uint_t type; 116 ngx_uint_t type;
116 117