Re: wget and ipv6 (1.6 beta5) serious bugs

2003-10-15 Thread Arkadiusz Miskiewicz
On Wednesday 15 of October 2003 12:11, Thomas Lussnig wrote: Ok this is clear, but than why become the aplication an binary IPv6 enabled one if the PC have no IPv6 support ? Because I'm using packages provided by Linux distribution which needs ipv6 because some users are using it. I thought

wget and ipv6 (1.6 beta5) serious bugs

2003-10-14 Thread Arkadiusz Miskiewicz
Hi, Right now wget code looks like this: #ifdef ENABLE_IPV6 int ip_default_family = AF_INET6; #else int ip_default_family = AF_INET; #endif and then ./connect.c: sock = socket (ip_default_family, SOCK_STREAM, 0); This assumes that binary compiled with ipv6 support is always used on

Re: wget and ipv6 (1.6 beta5) serious bugs

2003-10-14 Thread Hrvoje Niksic
Thanks for the report. I agree that the current code does not work for many uses -- that's why IPv6 is still experimental. Mauro Tortonesi is working on contributing IPv6 support that works better. For the impending release, I think the workaround you posted makes sense. Mauro, what do you