| 506 | } |
| 507 | |
| 508 | void TunnelPool::ProcessTunnelTest (std::shared_ptr<I2NPMessage> msg) |
| 509 | { |
| 510 | const uint8_t * buf = msg->GetPayload (); |
| 511 | uint32_t msgID = bufbe32toh (buf); |
| 512 | buf += 4; |
| 513 | uint64_t timestamp = bufbe64toh (buf); |
| 514 | |
| 515 | ProcessTunnelTest (msgID, timestamp); |
| 516 | } |
| 517 | |
| 518 | bool TunnelPool::ProcessTunnelTest (uint32_t msgID, uint64_t timestamp) |
| 519 | { |
no test coverage detected