As I'm adding IPV6 support to XMail, are there any *nix platform not having IPV6 support?
Linux: Check FreeBSD: NetBSD: OpenBSD: OSX: Solaris: That is, is the program below building and linking fine? -- #include <sys/types.h> #include <sys/socket.h> int main(void) { struct sockaddr_in6 ina; socket(PF_INET6, SOCK_STREAM, 0); ina.sin6_family = AF_INET6; return 0; } -- My guess is that all of them are OK, but I'd like to double check... - Davide - To unsubscribe from this list: send the line "unsubscribe xmail" in the body of a message to [EMAIL PROTECTED] For general help: send the line "help" in the body of a message to [EMAIL PROTECTED]