I need a function that works both with IP4 and IP6 addresses and I need to convert an address from it's string representation (IP4) or hexdecimal representation (IP6) to it's long value. The current code I have is:
struct addrinfo *addr;
// This converts an char* ip_address to an addrinfo, so now I know whether
// it's a IP4 or IP6 address
int result = getaddrinfo(ip_address, NULL, NULL, &addr);
if (result ==0) {
struct in_addr dst;
result = inet_pton(addr->ai_family, ip_address, &dst);
long ip_value = dst->s_addr;
freeaddrinfo(addr);
return ip_value;
}
I do get a long from dst->s_addr but I am pretty sure that this is incorrect. Any pointers on how to solve this are much appreciated!