| 62 | } |
| 63 | |
| 64 | bool GarlicRoutingSession::MessageConfirmed (uint32_t msgID) |
| 65 | { |
| 66 | if (msgID == GetLeaseSetUpdateMsgID ()) |
| 67 | { |
| 68 | SetLeaseSetUpdateStatus (eLeaseSetUpToDate); |
| 69 | SetLeaseSetUpdateMsgID (0); |
| 70 | LogPrint (eLogInfo, "Garlic: LeaseSet update confirmed"); |
| 71 | return true; |
| 72 | } |
| 73 | return false; |
| 74 | } |
| 75 | |
| 76 | void GarlicRoutingSession::CleanupUnconfirmedLeaseSet (uint64_t ts) |
| 77 | { |
no test coverage detected