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

6e8c2f
diff -up Python-2.7rc1/Modules/socketmodule.c.socketmodule2 Python-2.7rc1/Modules/socketmodule.c
6e8c2f
--- Python-2.7rc1/Modules/socketmodule.c.socketmodule2	2010-06-07 23:06:59.133498087 -0400
6e8c2f
+++ Python-2.7rc1/Modules/socketmodule.c	2010-06-07 23:11:51.249520087 -0400
6e8c2f
@@ -5253,6 +5253,15 @@ init_socket(void)
6e8c2f
 #ifdef  TCP_QUICKACK
6e8c2f
     PyModule_AddIntConstant(m, "TCP_QUICKACK", TCP_QUICKACK);
6e8c2f
 #endif
6e8c2f
+#ifdef	TCP_CONGESTION
6e8c2f
+    PyModule_AddIntConstant(m, "TCP_CONGESTION", TCP_CONGESTION);
6e8c2f
+#endif
6e8c2f
+#ifdef	TCP_MD5SIG
6e8c2f
+    PyModule_AddIntConstant(m, "TCP_MD5SIG", TCP_MD5SIG);
6e8c2f
+#endif
6e8c2f
+#ifdef	TCP_MD5SIG_MAXKEYLEN
6e8c2f
+    PyModule_AddIntConstant(m, "TCP_MD5SIG_MAXKEYLEN", TCP_MD5SIG_MAXKEYLEN);
6e8c2f
+#endif
6e8c2f
 
6e8c2f
 
6e8c2f
     /* IPX options */