comparison src/http/modules/ngx_http_geo_module.c @ 435:e7dbea1ee115 NGINX_0_7_25

nginx 0.7.25 *) Change: in subrequest processing. *) Change: now POSTs without "Content-Length" header line are allowed. *) Bugfix: now the "limit_req" and "limit_conn" directives log a prohibition reason. *) Bugfix: in the "delete" parameter of the "geo" directive.
author Igor Sysoev <http://sysoev.ru>
date Mon, 08 Dec 2008 00:00:00 +0300
parents 9da1d9d94d18
children dac47e9ef0d5
comparison
equal deleted inserted replaced
434:f64d9e30046c 435:e7dbea1ee115
664 if (ngx_radix32tree_delete(ctx->tree, cidrin.addr, cidrin.mask) 664 if (ngx_radix32tree_delete(ctx->tree, cidrin.addr, cidrin.mask)
665 != NGX_OK) 665 != NGX_OK)
666 { 666 {
667 ngx_conf_log_error(NGX_LOG_WARN, cf, 0, 667 ngx_conf_log_error(NGX_LOG_WARN, cf, 0,
668 "no network \"%V\" to delete", net); 668 "no network \"%V\" to delete", net);
669 return NGX_CONF_OK; 669 }
670 } 670
671 return NGX_CONF_OK;
671 } 672 }
672 } 673 }
673 674
674 val = ngx_http_geo_value(cf, ctx, &value[1]); 675 val = ngx_http_geo_value(cf, ctx, &value[1]);
675 676