mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-23 16:48:06 +02:00
fixed an issue with DELETE in persistent connections
This commit is contained in:
@@ -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);
|
||||||
|
Reference in New Issue
Block a user