|| r->headers_out.status == NGX_HTTP_NO_CONTENT
|| r->headers_out.status < NGX_HTTP_OK
|| r != r->main
- || (r->method & NGX_HTTP_HEAD))
+ || r->method == NGX_HTTP_HEAD)
{
return ngx_http_next_header_filter(r);
}
#endif
- if (r->method & NGX_HTTP_POST) {
+ if (r->method == NGX_HTTP_POST) {
return NGX_HTTP_NOT_ALLOWED;
}
ngx_chain_t out;
ngx_atomic_int_t ap, hn, ac, rq, rd, wr, wa;
- if (r->method != NGX_HTTP_GET && r->method != NGX_HTTP_HEAD) {
+ if (!(r->method & (NGX_HTTP_GET|NGX_HTTP_HEAD))) {
return NGX_HTTP_NOT_ALLOWED;
}
}
}
- if (r->method & NGX_HTTP_TRACE) {
+ if (r->method == NGX_HTTP_TRACE) {
ngx_log_error(NGX_LOG_INFO, r->connection->log, 0,
"client sent TRACE method");
ngx_http_finalize_request(r, NGX_HTTP_NOT_ALLOWED);
return rc;
}
- if ((r->method & NGX_HTTP_HEAD) && u->conf->cache_convert_head) {
+ if (r->method == NGX_HTTP_HEAD && u->conf->cache_convert_head) {
u->method = ngx_http_core_get_method;
}