merge r3457:

fix a geo range if the range includes two or more /16 networks
and does not begin at /16 network boundary
This commit is contained in:
Igor Sysoev 2010-06-07 10:04:13 +00:00
parent 90b8db3224
commit 54573bdc1f

View File

@ -589,7 +589,7 @@ ngx_http_geo_add_range(ngx_conf_t *cf, ngx_http_geo_conf_ctx_t *ctx,
ngx_array_t *a;
ngx_http_geo_range_t *range;
for (n = start; n <= end; n += 0x10000) {
for (n = start; n <= end; n = (n + 0x10000) & 0xffff0000) {
h = n >> 16;