mirror of
https://github.com/nginx/nginx.git
synced 2025-06-08 02:02:38 +08:00
SPDY: do not reject headers with empty value (ticket #396).
A quote from SPDY draft 2 specification: "The length of each name and value must be greater than zero. A receiver of a zero-length name or value must send a RST_STREAM with code PROTOCOL error." But it appears that Chrome browser allows sending requests over SPDY/2 connection using JavaScript that contain headers with empty values. For better compatibility across SPDY clients and to be compliant with HTTP, such headers are no longer rejected. Also, it is worth noting that in SPDY draft 3 the statement has been changed so that it permits empty values for headers.
This commit is contained in:
parent
3be925b6e3
commit
db8a0c8bf1
@ -2014,10 +2014,6 @@ ngx_http_spdy_parse_header(ngx_http_request_t *r)
|
||||
|
||||
len = ngx_spdy_frame_parse_uint16(p);
|
||||
|
||||
if (!len) {
|
||||
return NGX_ERROR;
|
||||
}
|
||||
|
||||
/* null-terminate header name */
|
||||
*p = '\0';
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user