| 13 | { |
| 14 | |
| 15 | bool isValidIpAddress(const std::wstring &ip) |
| 16 | { |
| 17 | IN_ADDR addr4; |
| 18 | IN6_ADDR addr6; |
| 19 | return InetPtonW(AF_INET, ip.c_str(), &addr4) == 1 |
| 20 | || InetPtonW(AF_INET6, ip.c_str(), &addr6) == 1; |
| 21 | } |
| 22 | |
| 23 | bool isValidIpOrCidr(const std::wstring &value) |
| 24 | { |
no outgoing calls
no test coverage detected