mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-03-21 16:49:10 +01:00
[UDPTunnel] restart local listener on error
Signed-off-by: R4SAS <r4sas@i2pmail.org>
This commit is contained in:
parent
cc75efcbca
commit
d723faaaa3
1 changed files with 5 additions and 3 deletions
|
@ -964,7 +964,8 @@ namespace client
|
||||||
RemotePort(remotePort), m_LastPort (0),
|
RemotePort(remotePort), m_LastPort (0),
|
||||||
m_cancel_resolve(false)
|
m_cancel_resolve(false)
|
||||||
{
|
{
|
||||||
m_LocalSocket.set_option (boost::asio::socket_base::receive_buffer_size (I2P_UDP_MAX_MTU ));
|
m_LocalSocket.set_option (boost::asio::socket_base::receive_buffer_size (I2P_UDP_MAX_MTU));
|
||||||
|
m_LocalSocket.set_option (boost::asio::socket_base::reuse_address (true));
|
||||||
|
|
||||||
auto dgram = m_LocalDest->CreateDatagramDestination(gzip);
|
auto dgram = m_LocalDest->CreateDatagramDestination(gzip);
|
||||||
dgram->SetReceiver(std::bind(&I2PUDPClientTunnel::HandleRecvFromI2P, this,
|
dgram->SetReceiver(std::bind(&I2PUDPClientTunnel::HandleRecvFromI2P, this,
|
||||||
|
@ -991,7 +992,8 @@ namespace client
|
||||||
void I2PUDPClientTunnel::HandleRecvFromLocal(const boost::system::error_code & ec, std::size_t transferred)
|
void I2PUDPClientTunnel::HandleRecvFromLocal(const boost::system::error_code & ec, std::size_t transferred)
|
||||||
{
|
{
|
||||||
if(ec) {
|
if(ec) {
|
||||||
LogPrint(eLogError, "UDP Client: ", ec.message());
|
LogPrint(eLogError, "UDP Client: Reading from socket error: ", ec.message(), ". Restarting listener...");
|
||||||
|
RecvFromLocal(); // Restart listener and continue work
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if(!m_RemoteIdent) {
|
if(!m_RemoteIdent) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue