C IP地址转字符串和数字

// ip字符串 转 数字
int ip_str_to_value(char *ip)
{
    struct in_addr s;
    inet_pton(AF_INET, ip, (void *) &s);
    return s.s_addr;
}
// ip数字 转 字符串
void ip_value_to_str(int ip, char *result, int size)
{
    inet_ntop(AF_INET, (void *) &ip, result, size);
}
 

你可能感兴趣的:(c语言,tcp/ip,开发语言)