diff options
author | max <max@tclers.tk> | 2011-08-04 14:03:59 (GMT) |
---|---|---|
committer | max <max@tclers.tk> | 2011-08-04 14:03:59 (GMT) |
commit | 2d023b4b58bc316adcf9e9721273392145c60fc2 (patch) | |
tree | a86216133aa88b71bb1a3bd0b1a3d15e819b189e /generic/tclIOSock.c | |
parent | 277d2c7075ce7dee345ae755f48675378a04edc2 (diff) | |
download | tcl-2d023b4b58bc316adcf9e9721273392145c60fc2.zip tcl-2d023b4b58bc316adcf9e9721273392145c60fc2.tar.gz tcl-2d023b4b58bc316adcf9e9721273392145c60fc2.tar.bz2 |
Don't use AI_ADDRCONFIG for now. It seems to do more harm than good.
Diffstat (limited to 'generic/tclIOSock.c')
-rw-r--r-- | generic/tclIOSock.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/generic/tclIOSock.c b/generic/tclIOSock.c index aabd67d..768428f 100644 --- a/generic/tclIOSock.c +++ b/generic/tclIOSock.c @@ -178,6 +178,14 @@ TclCreateSocketAddress( } hints.ai_socktype = SOCK_STREAM; +#if 0 + /* + * We found some problems when using AI_ADDRCONFIG, e.g. on systems that + * have no networking besides the loopback interface and want to resolve + * localhost. See bugs 3385024, 3382419, 3382431. As the advantage of + * using AI_ADDRCONFIG in situations where it works, is probably low, + * we'll leave it out for now. After all, it is just an optimisation. + */ #if defined(AI_ADDRCONFIG) && !defined(_AIX) && !defined(__hpux) /* * Missing on: OpenBSD, NetBSD. @@ -185,6 +193,7 @@ TclCreateSocketAddress( */ hints.ai_flags |= AI_ADDRCONFIG; #endif +#endif if (willBind) { hints.ai_flags |= AI_PASSIVE; } |