| 76 | // Set an IPAddress from the string containing an IP address in presentation format (dotted decimal for IPv4, hex string for IPv6). |
| 77 | bool set(Exception& ex, const char* address); |
| 78 | bool set(Exception& ex, const std::string& address) { return set(ex, address.c_str()); } |
| 79 | bool setWithDNS(Exception& ex, const char* address); |
| 80 | bool setWithDNS(Exception& ex, const std::string& address) { return setWithDNS(ex, address.c_str()); } |
| 81 |
no outgoing calls
no test coverage detected