I need to connect to an IPv6 address. This is not hardcoded. I will obtain IPv6 addresses in byte form (char *) and they will not be retrieved using DNS (No luck with getaddrinfo). The problem is, the sockaddr_in6 structure that I'm supposed to fill out is completely different on different platforms.
If there a good portable way to connect to an IPv6 address from the raw address bytes?
I should also mention that I am using libevent also.

struct sockaddr_in6structure, or just astruct in6_addr? – ephemient Jul 16 '12 at 19:45memsetthesockaddr_in6to zero then set just the fields you need (presumably.sin6_family,.sin6_port, and.sin6_addr). POSIX specifies thatin6_addrmust contain.s6_addr[16]bytes, is there any other system you care about? (I guess Windows is annoying, but that's just one case.) – ephemient Jul 16 '12 at 20:13memmove(&address.sin6_addr, IP, 16);– Matthew Mitchell Jul 16 '12 at 20:28memcpy()would be a bit more efficient since it's unlikely that yoursockaddr_in6will overlap with the raw bytes. – Mike Jul 17 '12 at 6:50