| 39 | } |
| 40 | |
| 41 | static CService ResolveService(const std::string& ip, uint16_t port = 0) |
| 42 | { |
| 43 | CService serv; |
| 44 | BOOST_CHECK_MESSAGE(Lookup(ip, serv, port, false), strprintf("failed to resolve: %s:%i", ip, port)); |
| 45 | return serv; |
| 46 | } |
| 47 | |
| 48 | |
| 49 | static std::vector<bool> FromBytes(const unsigned char* source, int vector_size) |
no test coverage detected