summaryrefslogtreecommitdiffstats
path: root/Modules/socketmodule.h
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2008-01-07 16:12:44 (GMT)
committerChristian Heimes <christian@cheimes.de>2008-01-07 16:12:44 (GMT)
commitfb2d25a15432bf53bd62c1033114732f03a22b8d (patch)
tree7858200c6c16990245dc6ab9aa03b5656850900f /Modules/socketmodule.h
parente28fa297e93f9904520b55ee903edaa4c2ef17bf (diff)
downloadcpython-fb2d25a15432bf53bd62c1033114732f03a22b8d.zip
cpython-fb2d25a15432bf53bd62c1033114732f03a22b8d.tar.gz
cpython-fb2d25a15432bf53bd62c1033114732f03a22b8d.tar.bz2
Issue #1646: Make socket support TIPC. The socket module now has support
for TIPC under Linux, see http://tipc.sf.net/ for more information. Thanks to Alberto Bertogli for the patch
Diffstat (limited to 'Modules/socketmodule.h')
-rw-r--r--Modules/socketmodule.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/Modules/socketmodule.h b/Modules/socketmodule.h
index 95bc233..285c1fe 100644
--- a/Modules/socketmodule.h
+++ b/Modules/socketmodule.h
@@ -60,6 +60,10 @@
# include <netpacket/packet.h>
#endif
+#ifdef HAVE_LINUX_TIPC_H
+# include <linux/tipc.h>
+#endif
+
#ifndef Py__SOCKET_H
#define Py__SOCKET_H
#ifdef __cplusplus