[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: dual stack & IPv6 on by default



>There have been reports of problems with some Web browsers trying to 
>use only the v6 address.

	this is due to the way mozilla is written.
	mozilla did:
		hp = gethostbyname2(host, AF_INET6);
		if (!hp)
			hp = gethostbyname(host);
	so mozilla tries to connect to IPv6/v4 dual stack destination, it
	would try to connect to IPv6 only.  it has to be fixed by using
	getaddrinfo(3).

itojun