comparison src/http/ngx_http_core_module.c @ 531:c3bd8cdabb8f release-0.1.40

nginx-0.1.40-RELEASE import *) Bugfix: if a client sent too long header line, then the request information did not logged in the error log. *) Bugfix: the "Set-Cookie" header line was not transferred when the "X-Accel-Redirect" was used; the bug had appeared in 0.1.39. *) Bugfix: the "Content-Disposition" header line was not transferred when the "X-Accel-Redirect" was used. *) Bugfix: the master process did not close the listen socket on the SIGQUIT signal. *) Bugfix: after on-line upgrade on Linux and Solaris the process name became shorter in the "ps" command.
author Igor Sysoev <igor@sysoev.ru>
date Mon, 25 Jul 2005 09:41:38 +0000
parents 7fa11e5c6e96
children 563ad09abf50
comparison
equal deleted inserted replaced
530:1feed3cc8571 531:c3bd8cdabb8f
880 /* NGX_ERROR may be returned by any filter */ 880 /* NGX_ERROR may be returned by any filter */
881 r->connection->closed = 1; 881 r->connection->closed = 1;
882 } 882 }
883 883
884 return rc; 884 return rc;
885 }
886
887
888 ngx_int_t
889 ngx_http_redirect(ngx_http_request_t *r, int redirect)
890 {
891 /* STUB */
892
893 /* log request */
894
895 ngx_http_close_request(r, 0);
896 return NGX_OK;
897 } 885 }
898 886
899 887
900 ngx_int_t 888 ngx_int_t
901 ngx_http_set_exten(ngx_http_request_t *r) 889 ngx_http_set_exten(ngx_http_request_t *r)