diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2000-05-10 15:15:54 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2000-05-10 15:15:54 (GMT) |
commit | 9cfce18c4f73adb74f7a3eba16c8aa40f38770d7 (patch) | |
tree | 99389a035daa60b27a8e30dfa67951b5b7c8d6e3 | |
parent | da5cc82d5919318c33393ba0a0dc90e4552f011d (diff) | |
download | cpython-9cfce18c4f73adb74f7a3eba16c8aa40f38770d7.zip cpython-9cfce18c4f73adb74f7a3eba16c8aa40f38770d7.tar.gz cpython-9cfce18c4f73adb74f7a3eba16c8aa40f38770d7.tar.bz2 |
GUSI 2.0.5 has a non-functional getsockname() if you use Open Transport. For now the workaround is to only enable MacTCP sockets.
-rw-r--r-- | Mac/Python/gusiconfig.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Mac/Python/gusiconfig.cpp b/Mac/Python/gusiconfig.cpp index 943a0a6..dc33134 100644 --- a/Mac/Python/gusiconfig.cpp +++ b/Mac/Python/gusiconfig.cpp @@ -48,7 +48,8 @@ void GUSISetupFactories() #ifdef GUSISetupFactories_BeginHook GUSISetupFactories_BeginHook #endif - GUSIwithInetSockets(); +// GUSIwithInetSockets(); + GUSIwithMTInetSockets(); #ifdef GUSISetupFactories_EndHook GUSISetupFactories_EndHook #endif |