mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-01-18 00:09:58 +00:00
don't handle unecnrypted DatabaseSearchReply msg if came throug client tunnel
This commit is contained in:
parent
5a09c11e90
commit
c984f89dfb
@ -808,14 +808,12 @@ namespace i2p
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case eI2NPDatabaseStore:
|
case eI2NPDatabaseStore:
|
||||||
|
case eI2NPDatabaseSearchReply:
|
||||||
// forward to netDb if came directly or through exploratory tunnel as response to our request
|
// forward to netDb if came directly or through exploratory tunnel as response to our request
|
||||||
if (!msg->from || !msg->from->GetTunnelPool () || msg->from->GetTunnelPool ()->IsExploratory ())
|
if (!msg->from || !msg->from->GetTunnelPool () || msg->from->GetTunnelPool ()->IsExploratory ())
|
||||||
i2p::data::netdb.PostI2NPMsg (msg);
|
i2p::data::netdb.PostI2NPMsg (msg);
|
||||||
break;
|
break;
|
||||||
case eI2NPDatabaseSearchReply:
|
|
||||||
// forward to netDb
|
|
||||||
i2p::data::netdb.PostI2NPMsg (msg);
|
|
||||||
break;
|
|
||||||
case eI2NPDatabaseLookup:
|
case eI2NPDatabaseLookup:
|
||||||
// forward to netDb if floodfill and came directly
|
// forward to netDb if floodfill and came directly
|
||||||
if (!msg->from && i2p::context.IsFloodfill ())
|
if (!msg->from && i2p::context.IsFloodfill ())
|
||||||
|
Loading…
x
Reference in New Issue
Block a user