mirror of https://github.com/adamdruppe/arsd.git
big perf improvement on HEAD
This commit is contained in:
parent
da1f22af2c
commit
8b042a4b0f
5
http2.d
5
http2.d
|
@ -1340,7 +1340,10 @@ class HttpRequest {
|
|||
// done with headers
|
||||
if(data[position] == '\r' && (position + 1) < data.length && data[position + 1] == '\n')
|
||||
position++;
|
||||
state = State.readingBody;
|
||||
if(this.requestParameters.method == HttpVerb.HEAD)
|
||||
state = State.complete;
|
||||
else
|
||||
state = State.readingBody;
|
||||
position++; // skip the newline
|
||||
break;
|
||||
} else if(data[position] == ' ' || data[position] == '\t') {
|
||||
|
|
Loading…
Reference in New Issue