summaryrefslogtreecommitdiff
path: root/Modules/socketmodule.c
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2016-08-08 14:07:05 +0300
committerBerker Peksag <berker.peksag@gmail.com>2016-08-08 14:07:05 +0300
commit95e0df8389c8a44c0f6c6b6be8363e602e8e8914 (patch)
treea97549e69b94257aabfaf5cf8614ddef29bac465 /Modules/socketmodule.c
parente1d22fda7ee087ec4ca3fe20f38cbceae83afd28 (diff)
downloadcpython-git-95e0df8389c8a44c0f6c6b6be8363e602e8e8914.tar.gz
Issue #27702: Only expose SOCK_RAW when defined
SOCK_RAW is marked as optional in the POSIX specification: http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_socket.h.html Patch by Ed Schouten.
Diffstat (limited to 'Modules/socketmodule.c')
-rw-r--r--Modules/socketmodule.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c
index d21d18f7e3..d21509e9eb 100644
--- a/Modules/socketmodule.c
+++ b/Modules/socketmodule.c
@@ -6495,7 +6495,10 @@ PyInit__socket(void)
PyModule_AddIntMacro(m, SOCK_STREAM);
PyModule_AddIntMacro(m, SOCK_DGRAM);
/* We have incomplete socket support. */
+#ifdef SOCK_RAW
+ /* SOCK_RAW is marked as optional in the POSIX specification */
PyModule_AddIntMacro(m, SOCK_RAW);
+#endif
PyModule_AddIntMacro(m, SOCK_SEQPACKET);
#if defined(SOCK_RDM)
PyModule_AddIntMacro(m, SOCK_RDM);