| 1118 | } |
| 1119 | |
| 1120 | const I2PService* BOBCommandChannel::GetProxy(const std::string& name) const |
| 1121 | { |
| 1122 | auto it = m_proxy.find(name); |
| 1123 | if (it != m_proxy.end() && it->second) |
| 1124 | return it->second.get(); |
| 1125 | return nullptr; |
| 1126 | } |
| 1127 | |
| 1128 | void BOBCommandChannel::RemoveProxy(const std::string& name) |
| 1129 | { |
no outgoing calls
no test coverage detected