| 13 | BOOST_FIXTURE_TEST_SUITE(netbase_tests, BasicTestingSetup) |
| 14 | |
| 15 | static CNetAddr ResolveIP(const char* ip) |
| 16 | { |
| 17 | CNetAddr addr; |
| 18 | LookupHost(ip, addr, false); |
| 19 | return addr; |
| 20 | } |
| 21 | |
| 22 | static CSubNet ResolveSubNet(const char* subnet) |
| 23 | { |
no test coverage detected