From b47566cf4b4cdd7ca91de0298b9e09cc83446766 Mon Sep 17 00:00:00 2001 From: zhengchao Date: Tue, 20 Nov 2018 15:49:25 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8Dtfe=5Fhttp=5Fin=5Frequest?= =?UTF-8?q?=E4=B8=AD=E6=BC=8F=E5=88=A4EV=5FHTTP=5FREQ=5FEND=E7=8A=B6?= =?UTF-8?q?=E6=80=81=E7=9A=84bug=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- common/include/tfe_http.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/include/tfe_http.h b/common/include/tfe_http.h index 0384e13..327d84d 100644 --- a/common/include/tfe_http.h +++ b/common/include/tfe_http.h @@ -430,7 +430,7 @@ static inline struct tfe_http_half * tfe_http_session_response_create(struct tfe static inline int tfe_http_in_request(enum tfe_http_event events) { if ((events & EV_HTTP_REQ_HDR) | (events & EV_HTTP_REQ_BODY_BEGIN) | (events & EV_HTTP_REQ_BODY_END) - | (events & EV_HTTP_REQ_BODY_CONT)) + | (events & EV_HTTP_REQ_BODY_CONT)| (events & EV_HTTP_REQ_END)) { return 1; }