Blame SOURCES/python-2.7rc1-socketmodule-constants.patch

98d66e
--- Python-2.7rc1/Modules/socketmodule.c.socketmodule	2010-05-09 10:46:46.000000000 -0400
98d66e
+++ Python-2.7rc1/Modules/socketmodule.c	2010-06-07 23:04:19.374234780 -0400
98d66e
@@ -4783,6 +4783,61 @@ init_socket(void)
98d66e
     PyModule_AddIntConstant(m, "SO_SETFIB", SO_SETFIB);
98d66e
 #endif
98d66e
 
98d66e
+#ifdef	SO_SNDBUFFORCE
98d66e
+    PyModule_AddIntConstant(m, "SO_SNDBUFFORCE", SO_SNDBUFFORCE);
98d66e
+#endif
98d66e
+#ifdef	SO_RCVBUFFORCE
98d66e
+    PyModule_AddIntConstant(m, "SO_RCVBUFFORCE", SO_RCVBUFFORCE);
98d66e
+#endif
98d66e
+#ifdef	SO_NO_CHECK
98d66e
+    PyModule_AddIntConstant(m, "SO_NO_CHECK", SO_NO_CHECK);
98d66e
+#endif
98d66e
+#ifdef	SO_PRIORITY
98d66e
+    PyModule_AddIntConstant(m, "SO_PRIORITY", SO_PRIORITY);
98d66e
+#endif
98d66e
+#ifdef	SO_BSDCOMPAT
98d66e
+    PyModule_AddIntConstant(m, "SO_BSDCOMPAT", SO_BSDCOMPAT);
98d66e
+#endif
98d66e
+#ifdef	SO_PASSCRED
98d66e
+    PyModule_AddIntConstant(m, "SO_PASSCRED", SO_PASSCRED);
98d66e
+#endif
98d66e
+#ifdef	SO_PEERCRED
98d66e
+    PyModule_AddIntConstant(m, "SO_PEERCRED", SO_PEERCRED);
98d66e
+#endif
98d66e
+#ifdef	SO_SECURITY_AUTHENTICATION
98d66e
+    PyModule_AddIntConstant(m, "SO_SECURITY_AUTHENTICATION", SO_SECURITY_AUTHENTICATION);
98d66e
+#endif
98d66e
+#ifdef	SO_SECURITY_ENCRYPTION_TRANSPORT
98d66e
+    PyModule_AddIntConstant(m, "SO_SECURITY_ENCRYPTION_TRANSPORT", SO_SECURITY_ENCRYPTION_TRANSPORT);
98d66e
+#endif
98d66e
+#ifdef	SO_SECURITY_ENCRYPTION_NETWORK
98d66e
+    PyModule_AddIntConstant(m, "SO_SECURITY_ENCRYPTION_NETWORK", SO_SECURITY_ENCRYPTION_NETWORK);
98d66e
+#endif
98d66e
+#ifdef	SO_BINDTODEVICE
98d66e
+    PyModule_AddIntConstant(m, "SO_BINDTODEVICE", SO_BINDTODEVICE);
98d66e
+#endif
98d66e
+#ifdef	SO_ATTACH_FILTER
98d66e
+    PyModule_AddIntConstant(m, "SO_ATTACH_FILTER", SO_ATTACH_FILTER);
98d66e
+#endif
98d66e
+#ifdef	SO_DETACH_FILTER
98d66e
+    PyModule_AddIntConstant(m, "SO_DETACH_FILTER", SO_DETACH_FILTER);
98d66e
+#endif
98d66e
+#ifdef	SO_PEERNAME
98d66e
+    PyModule_AddIntConstant(m, "SO_PEERNAME", SO_PEERNAME);
98d66e
+#endif
98d66e
+#ifdef	SO_TIMESTAMP
98d66e
+    PyModule_AddIntConstant(m, "SO_TIMESTAMP", SO_TIMESTAMP);
98d66e
+#endif
98d66e
+#ifdef	SO_PEERSEC
98d66e
+    PyModule_AddIntConstant(m, "SO_PEERSEC", SO_PEERSEC);
98d66e
+#endif
98d66e
+#ifdef	SO_PASSSEC
98d66e
+    PyModule_AddIntConstant(m, "SO_PASSSEC", SO_PASSSEC);
98d66e
+#endif
98d66e
+#ifdef	SO_TIMESTAMPNS
98d66e
+    PyModule_AddIntConstant(m, "SO_TIMESTAMPNS", SO_TIMESTAMPNS);
98d66e
+#endif
98d66e
+
98d66e
     /* Maximum number of connections for "listen" */
98d66e
 #ifdef  SOMAXCONN
98d66e
     PyModule_AddIntConstant(m, "SOMAXCONN", SOMAXCONN);