Rebuild against latest filesystem package.
[fedora-mingw.git] / python / python-2.5.1-socketmodule-constants2.patch
1 diff -rup Python-2.5.1-orig/Modules/socketmodule.c Python-2.5.1/Modules/socketmodule.c
2 --- Python-2.5.1-orig/Modules/socketmodule.c    2008-03-25 09:59:38.000000000 -0400
3 +++ Python-2.5.1/Modules/socketmodule.c 2008-03-25 10:12:24.000000000 -0400
4 @@ -4977,6 +4977,15 @@ init_socket(void)
5  #ifdef TCP_QUICKACK
6         PyModule_AddIntConstant(m, "TCP_QUICKACK", TCP_QUICKACK);
7  #endif
8 +#ifdef TCP_CONGESTION
9 +       PyModule_AddIntConstant(m, "TCP_CONGESTION", TCP_CONGESTION);
10 +#endif
11 +#ifdef TCP_MD5SIG
12 +       PyModule_AddIntConstant(m, "TCP_MD5SIG", TCP_MD5SIG);
13 +#endif
14 +#ifdef TCP_MD5SIG_MAXKEYLEN
15 +       PyModule_AddIntConstant(m, "TCP_MD5SIG_MAXKEYLEN", TCP_MD5SIG_MAXKEYLEN);
16 +#endif
17  
18  
19         /* IPX options */
20 Only in Python-2.5.1/Modules: socketmodule.c~