comparison src/http/modules/ngx_http_memcached_module.c @ 520:d41628eb4d0a NGINX_0_8_12

nginx 0.8.12 *) Feature: the "sendfile" parameter in the "aio" directive on FreeBSD. *) Bugfix: in try_files; the bug had appeared in 0.8.11. *) Bugfix: in memcached; the bug had appeared in 0.8.11.
author Igor Sysoev <http://sysoev.ru>
date Mon, 31 Aug 2009 00:00:00 +0400
parents 24b676623d4f
children c04fa65fe604
comparison
equal deleted inserted replaced
519:1fd1b769cd78 520:d41628eb4d0a
209 209
210 u->input_filter_init = ngx_http_memcached_filter_init; 210 u->input_filter_init = ngx_http_memcached_filter_init;
211 u->input_filter = ngx_http_memcached_filter; 211 u->input_filter = ngx_http_memcached_filter;
212 u->input_filter_ctx = ctx; 212 u->input_filter_ctx = ctx;
213 213
214 r->main->count++;
215
214 ngx_http_upstream_init(r); 216 ngx_http_upstream_init(r);
215 217
216 return NGX_DONE; 218 return NGX_DONE;
217 } 219 }
218 220