Commit 52e25fc0 by xzl

添加打印log

parent 84da6607
...@@ -95,7 +95,7 @@ void HttpSession::onRecv(const Socket::Buffer::Ptr&pBuf) { ...@@ -95,7 +95,7 @@ void HttpSession::onRecv(const Socket::Buffer::Ptr&pBuf) {
static uint32_t reqSize = mINI::Instance()[Config::Http::kMaxReqSize].as<uint32_t>(); static uint32_t reqSize = mINI::Instance()[Config::Http::kMaxReqSize].as<uint32_t>();
m_ticker.resetTime(); m_ticker.resetTime();
if (m_strRcvBuf.size() + pBuf->size() >= reqSize) { if (m_strRcvBuf.size() + pBuf->size() >= reqSize) {
WarnL << "接收缓冲区溢出!"; WarnL << "接收缓冲区溢出:" << m_strRcvBuf.size() + pBuf->size() << "," << reqSize;
shutdown(); shutdown();
return; return;
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论