| 1558 | } |
| 1559 | |
| 1560 | void RouterContext::HandlePublishResendTimer (const boost::system::error_code& ecode) |
| 1561 | { |
| 1562 | if (ecode != boost::asio::error::operation_aborted) |
| 1563 | { |
| 1564 | i2p::context.UpdateTimestamp (i2p::util::GetSecondsSinceEpoch ()); |
| 1565 | Publish (); |
| 1566 | SchedulePublishResend (); |
| 1567 | } |
| 1568 | } |
| 1569 | |
| 1570 | void RouterContext::ScheduleCongestionUpdate () |
| 1571 | { |
nothing calls this directly
no test coverage detected