| 91 | } |
| 92 | |
| 93 | std::shared_ptr<i2p::client::ClientDestination> CreateLocalDestination (const i2p::data::PrivateKeys& keys, bool isPublic, |
| 94 | const i2p::util::Mapping * params) |
| 95 | { |
| 96 | auto localDestination = std::make_shared<i2p::client::RunnableClientDestination> (keys, isPublic, params); |
| 97 | localDestination->Start (); |
| 98 | return localDestination; |
| 99 | } |
| 100 | |
| 101 | std::shared_ptr<i2p::client::ClientDestination> CreateLocalDestination (bool isPublic, i2p::data::SigningKeyType sigType, |
| 102 | const i2p::util::Mapping * params) |
nothing calls this directly
no test coverage detected