move tunnel build request/reply code from I2NPProtocol.cpp to Tunnel.cpp

This commit is contained in:
orignal
2024-11-09 17:25:43 -05:00
parent 002d8c7773
commit c5e464a8b5
6 changed files with 114 additions and 133 deletions

View File

@@ -109,8 +109,8 @@ namespace tunnel
const i2p::crypto::AESKey& layerKey, const i2p::crypto::AESKey& ivKey,
bool isGateway, bool isEndpoint);
void HandleShortTransitTunnelBuildMsg (uint8_t * buf, size_t len);
void HandleVariableTransitTunnelBuildMsg (uint8_t * buf, size_t len);
void HandleShortTransitTunnelBuildMsg (std::shared_ptr<I2NPMessage> msg);
void HandleVariableTransitTunnelBuildMsg (std::shared_ptr<I2NPMessage> msg);
}
}