| 22 | BOOST_FIXTURE_TEST_SUITE(netbase_tests, BasicTestingSetup) |
| 23 | |
| 24 | static CNetAddr ResolveIP(const std::string& ip) |
| 25 | { |
| 26 | CNetAddr addr; |
| 27 | LookupHost(ip, addr, false); |
| 28 | return addr; |
| 29 | } |
| 30 | |
| 31 | static CSubNet ResolveSubNet(const std::string& subnet) |
| 32 | { |
no test coverage detected