| 3179 | } |
| 3180 | |
| 3181 | std::optional<Proxy> CConnman::PrivateBroadcast::ProxyForIPv4or6() const |
| 3182 | { |
| 3183 | if (m_outbound_tor_ok_at_least_once.load()) { |
| 3184 | if (const auto tor_proxy = GetProxy(NET_ONION)) { |
| 3185 | return tor_proxy; |
| 3186 | } |
| 3187 | } |
| 3188 | return std::nullopt; |
| 3189 | } |
| 3190 | |
| 3191 | Mutex NetEventsInterface::g_msgproc_mutex; |
| 3192 |