1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-01-22 04:04:16 +00:00

* HTTPProxy.cpp : force clean recv buffer (#508)

This commit is contained in:
hagen 2016-06-04 00:00:00 +00:00
parent 667ea43b3c
commit e4edc59689

View File

@ -224,8 +224,10 @@ namespace proxy {
return;
}
if (HandleRequest(len))
if (HandleRequest(len)) {
m_recv_buf.clear();
return; /* request processed */
}
AsyncSockRead();
}