我正在寻找一些函数来验证给定的字符串是否是有效的 ipv4 地址,但inet_aton() 似乎对“11”和“1.1”之类的字符串感到满意,
这是验证 ipv4 字符串的最佳方法。
#include <arpa/inet.h>
#include <stdio.h>
#include <stdlib.h>
int
main(int argc, char *argv[])
{
struct in_addr addr;
if (argc != 2) {
fprintf(stderr, "%s <dotted-address>\n", argv[0]);
exit(EXIT_FAILURE);
}
if (inet_aton(argv[1], &addr) == 0) {
fprintf(stderr, "Invalid address\n");
exit(EXIT_FAILURE);
}
printf("%s\n", inet_ntoa(addr));
exit(EXIT_SUCCESS);
}
一些无效字符串的输出是
[root@ ~]# ./a.out 1.1
1.0.0.1
[root@ ~]# ./a.out "1 some junk"
0.0.0.1
[root@ ~]# ./a.out "10 some junk"
0.0.0.10
我想要一个例程拒绝任何不是点分十进制表示法 xxxx, x 从 0 到 255 的字符串