mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-02-02 02:54:01 +01:00
* HTTPProxy.cpp : force clean recv buffer (#508)
This commit is contained in:
parent
667ea43b3c
commit
e4edc59689
|
@ -224,8 +224,10 @@ namespace proxy {
|
|||
return;
|
||||
}
|
||||
|
||||
if (HandleRequest(len))
|
||||
if (HandleRequest(len)) {
|
||||
m_recv_buf.clear();
|
||||
return; /* request processed */
|
||||
}
|
||||
AsyncSockRead();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue