changed method checking for discarding contents

This commit is contained in:
hyung-hwan 2013-03-14 06:51:43 +00:00
parent 5777602a01
commit 52071e8ab0

View File

@ -1865,10 +1865,10 @@ if (qse_htre_getcontentlen(req) > 0)
if (peek) if (peek)
{ {
if (method != QSE_HTTP_POST && method != QSE_HTTP_PUT) /*if (method != QSE_HTTP_POST && method != QSE_HTTP_PUT && method != QSE_HTTP_OPTIONS)*/
if (method == QSE_HTTP_HEAD || method == QSE_HTTP_GET)
{ {
/* i'll discard request contents if the method is none of /* i'll discard request contents if the method is HEAD or GET */
* post and put */
qse_httpd_discardcontent (httpd, req); qse_httpd_discardcontent (httpd, req);
} }