c6247fd398
64-bit (patch 103) Thu Jul 8 2010 David Malcolm <dmalcolm@redhat.com> - 2.7-2 - add machinery for regenerating the "configure" script in the face of mismatching autoconf versions (patch 300) Tue Jul 6 2010 David Malcolm <dmalcolm@redhat.com> - 2.7-1 - 2.7 final; drop alphatag - drop patch 117 (upstream), patch 120 (upstreamed) - fix the commented-out __python_ver from 26 to 27
65 lines
2.2 KiB
Diff
65 lines
2.2 KiB
Diff
--- Python-2.7rc1/Modules/socketmodule.c.socketmodule 2010-05-09 10:46:46.000000000 -0400
|
|
+++ Python-2.7rc1/Modules/socketmodule.c 2010-06-07 23:04:19.374234780 -0400
|
|
@@ -4783,6 +4783,61 @@ init_socket(void)
|
|
PyModule_AddIntConstant(m, "SO_SETFIB", SO_SETFIB);
|
|
#endif
|
|
|
|
+#ifdef SO_SNDBUFFORCE
|
|
+ PyModule_AddIntConstant(m, "SO_SNDBUFFORCE", SO_SNDBUFFORCE);
|
|
+#endif
|
|
+#ifdef SO_RCVBUFFORCE
|
|
+ PyModule_AddIntConstant(m, "SO_RCVBUFFORCE", SO_RCVBUFFORCE);
|
|
+#endif
|
|
+#ifdef SO_NO_CHECK
|
|
+ PyModule_AddIntConstant(m, "SO_NO_CHECK", SO_NO_CHECK);
|
|
+#endif
|
|
+#ifdef SO_PRIORITY
|
|
+ PyModule_AddIntConstant(m, "SO_PRIORITY", SO_PRIORITY);
|
|
+#endif
|
|
+#ifdef SO_BSDCOMPAT
|
|
+ PyModule_AddIntConstant(m, "SO_BSDCOMPAT", SO_BSDCOMPAT);
|
|
+#endif
|
|
+#ifdef SO_PASSCRED
|
|
+ PyModule_AddIntConstant(m, "SO_PASSCRED", SO_PASSCRED);
|
|
+#endif
|
|
+#ifdef SO_PEERCRED
|
|
+ PyModule_AddIntConstant(m, "SO_PEERCRED", SO_PEERCRED);
|
|
+#endif
|
|
+#ifdef SO_SECURITY_AUTHENTICATION
|
|
+ PyModule_AddIntConstant(m, "SO_SECURITY_AUTHENTICATION", SO_SECURITY_AUTHENTICATION);
|
|
+#endif
|
|
+#ifdef SO_SECURITY_ENCRYPTION_TRANSPORT
|
|
+ PyModule_AddIntConstant(m, "SO_SECURITY_ENCRYPTION_TRANSPORT", SO_SECURITY_ENCRYPTION_TRANSPORT);
|
|
+#endif
|
|
+#ifdef SO_SECURITY_ENCRYPTION_NETWORK
|
|
+ PyModule_AddIntConstant(m, "SO_SECURITY_ENCRYPTION_NETWORK", SO_SECURITY_ENCRYPTION_NETWORK);
|
|
+#endif
|
|
+#ifdef SO_BINDTODEVICE
|
|
+ PyModule_AddIntConstant(m, "SO_BINDTODEVICE", SO_BINDTODEVICE);
|
|
+#endif
|
|
+#ifdef SO_ATTACH_FILTER
|
|
+ PyModule_AddIntConstant(m, "SO_ATTACH_FILTER", SO_ATTACH_FILTER);
|
|
+#endif
|
|
+#ifdef SO_DETACH_FILTER
|
|
+ PyModule_AddIntConstant(m, "SO_DETACH_FILTER", SO_DETACH_FILTER);
|
|
+#endif
|
|
+#ifdef SO_PEERNAME
|
|
+ PyModule_AddIntConstant(m, "SO_PEERNAME", SO_PEERNAME);
|
|
+#endif
|
|
+#ifdef SO_TIMESTAMP
|
|
+ PyModule_AddIntConstant(m, "SO_TIMESTAMP", SO_TIMESTAMP);
|
|
+#endif
|
|
+#ifdef SO_PEERSEC
|
|
+ PyModule_AddIntConstant(m, "SO_PEERSEC", SO_PEERSEC);
|
|
+#endif
|
|
+#ifdef SO_PASSSEC
|
|
+ PyModule_AddIntConstant(m, "SO_PASSSEC", SO_PASSSEC);
|
|
+#endif
|
|
+#ifdef SO_TIMESTAMPNS
|
|
+ PyModule_AddIntConstant(m, "SO_TIMESTAMPNS", SO_TIMESTAMPNS);
|
|
+#endif
|
|
+
|
|
/* Maximum number of connections for "listen" */
|
|
#ifdef SOMAXCONN
|
|
PyModule_AddIntConstant(m, "SOMAXCONN", SOMAXCONN);
|