fixed one compiling warning

This commit is contained in:
zhengshuxin 2021-10-26 17:01:26 +08:00
parent 8e023c745a
commit 82265bdbb1
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ typedef struct HTTP_CHAT_CTX {
HTTP_HDR *hdr; /**< 通用HTTP头(请求头或响应头) */ HTTP_HDR *hdr; /**< 通用HTTP头(请求头或响应头) */
ACL_ASTREAM *stream; /**< 流指针 */ ACL_ASTREAM *stream; /**< 流指针 */
int timeout; /**< 读写超时时间,秒 */ int timeout; /**< 读写超时时间,秒 */
char chunked; /**< 是否是块传输模式 */ short chunked; /**< 是否是块传输模式 */
ctx_type type; /**< 仅为了调试方便 */ ctx_type type; /**< 仅为了调试方便 */
int status; /**< 当前所处IO状态 */ int status; /**< 当前所处IO状态 */
#define CHAT_S_HDR (1 << 0) /**< 读 HTTP 头 */ #define CHAT_S_HDR (1 << 0) /**< 读 HTTP 头 */

View File

@ -11,7 +11,7 @@ typedef struct HTTP_CHAT_CTX {
ACL_VSTREAM *stream; ACL_VSTREAM *stream;
unsigned int flag; /**< 继承的标志位, defined as HTTP_CHAT_FLAG_XXX */ unsigned int flag; /**< 继承的标志位, defined as HTTP_CHAT_FLAG_XXX */
int timeout; int timeout;
char chunked; short chunked;
http_off_t chunk_len; /**< 当前数据块所需要读的数据长度(字节) */ http_off_t chunk_len; /**< 当前数据块所需要读的数据长度(字节) */
http_off_t read_cnt; /**< 当前数据块所读数据长度(字节) */ http_off_t read_cnt; /**< 当前数据块所读数据长度(字节) */
http_off_t body_len; /**< 所读到数据体总长度(字节) */ http_off_t body_len; /**< 所读到数据体总长度(字节) */