如下代码所示:
bool APN::isIPVaild(const std::string& str) { struct in_addr addr; if (inet_aton(str.c_str(), &addr) == 0) return false; return true; }通过inet_aton函数,来进行判断,合规就返回TRUE,否则返回FALSE
免责声明:文章内容来自互联网,本站不对其真实性负责,也不承担任何法律责任,如有侵权等情况,请与本站联系删除。
转载请注明出处:判断 IP是否合规范 https://www.yhzz.com.cn/a/14597.html