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-02-25 17:26:01 +00:00
parent 146324618d
commit bd4b6e68af

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;