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