mirror of
https://github.com/pocoproject/poco.git
synced 2025-03-04 19:13:30 +01:00
fixed an issue with DELETE in persistent connections
This commit is contained in:
parent
53c07395c5
commit
1cbaf38bbc
@ -58,7 +58,7 @@ HTTPServerRequestImpl::HTTPServerRequestImpl(HTTPServerResponseImpl& response, H
|
|||||||
#else
|
#else
|
||||||
_pStream = new HTTPFixedLengthInputStream(session, getContentLength());
|
_pStream = new HTTPFixedLengthInputStream(session, getContentLength());
|
||||||
#endif
|
#endif
|
||||||
else if (getMethod() == HTTPRequest::HTTP_GET || getMethod() == HTTPRequest::HTTP_HEAD)
|
else if (getMethod() == HTTPRequest::HTTP_GET || getMethod() == HTTPRequest::HTTP_HEAD || getMethod() == HTTPRequest::HTTP_DELETE)
|
||||||
_pStream = new HTTPFixedLengthInputStream(session, 0);
|
_pStream = new HTTPFixedLengthInputStream(session, 0);
|
||||||
else
|
else
|
||||||
_pStream = new HTTPInputStream(session);
|
_pStream = new HTTPInputStream(session);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user