| 1105 | } |
| 1106 | |
| 1107 | std::shared_ptr<BOBDestination> BOBCommandChannel::FindDestination (const std::string& name) |
| 1108 | { |
| 1109 | auto it = m_Destinations.find (name); |
| 1110 | if (it != m_Destinations.end ()) |
| 1111 | return it->second; |
| 1112 | return nullptr; |
| 1113 | } |
| 1114 | |
| 1115 | void BOBCommandChannel::SetProxy (const std::string& name, std::unique_ptr<I2PService> proxy) |
| 1116 | { |
no outgoing calls
no test coverage detected