mirror of
https://github.com/PurpleI2P/i2pd
synced 2024-11-10 08:00:38 +03:00
* HandleDestinationRequestTimeout() : readable code
This commit is contained in:
parent
5d38693b4d
commit
a5c0b48b57
@ -846,11 +846,13 @@ namespace util
|
||||
if (ecode != boost::asio::error::operation_aborted)
|
||||
{
|
||||
auto leaseSet = i2p::client::context.GetSharedLocalDestination ()->FindLeaseSet (destination);
|
||||
if (leaseSet && !leaseSet->IsExpired ())
|
||||
if (leaseSet && !leaseSet->IsExpired ()) {
|
||||
SendToDestination (leaseSet, port, buf, len);
|
||||
else
|
||||
// still no LeaseSet
|
||||
SendReply (leaseSet ? "<html>" + itoopieImage + "<br>\r\nLeases expired</html>" : "<html>" + itoopieImage + "LeaseSet not found</html>", 504);
|
||||
} else if (leaseSet) {
|
||||
SendReply ("<html>" + itoopieImage + "<br>\r\nLeaseSet expired</html>", 504);
|
||||
} else {
|
||||
SendReply ("<html>" + itoopieImage + "<br>\r\nLeaseSet not found</html>", 504);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user