This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author christian.heimes
Recipients christian.heimes, dbinger, lemburg
Date 2007-11-30.11:28:46
SpamBayes Score 0.13064535
Marked as misclassified No
Message-id <1196422126.69.0.0407731170046.issue1514@psf.upfronthosting.co.za>
In-reply-to
Content
On my Linux box (Ubuntu 7.10, i386, 2.6.22) the TCP_* constants are also
missing. This patch solves the bug.

Index: Modules/socketmodule.h
===================================================================
--- Modules/socketmodule.h      (revision 59228)
+++ Modules/socketmodule.h      (working copy)
@@ -8,9 +8,7 @@
 #   include <sys/socket.h>
 # endif
 # include <netinet/in.h>
-# if defined(__CYGWIN__) || (defined(PYOS_OS2) && defined(PYCC_VACPP))
-#  include <netinet/tcp.h>
-# endif
+# include <netinet/tcp.h>

 #else /* MS_WINDOWS */
 #if _MSC_VER >= 1300
History
Date User Action Args
2007-11-30 11:28:47christian.heimessetspambayes_score: 0.130645 -> 0.13064535
recipients: + christian.heimes, lemburg, dbinger
2007-11-30 11:28:46christian.heimessetspambayes_score: 0.130645 -> 0.130645
messageid: <1196422126.69.0.0407731170046.issue1514@psf.upfronthosting.co.za>
2007-11-30 11:28:46christian.heimeslinkissue1514 messages
2007-11-30 11:28:46christian.heimescreate