diff options
Diffstat (limited to 'Modules/socketmodule.c')
-rw-r--r-- | Modules/socketmodule.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c index e0ac9a3..0eec3ac 100644 --- a/Modules/socketmodule.c +++ b/Modules/socketmodule.c @@ -5449,6 +5449,15 @@ init_socket(void) #ifdef TCP_QUICKACK PyModule_AddIntConstant(m, "TCP_QUICKACK", TCP_QUICKACK); #endif +#ifdef TCP_CONGESTION + PyModule_AddIntConstant(m, "TCP_CONGESTION", TCP_CONGESTION); +#endif +#ifdef TCP_MD5SIG + PyModule_AddIntConstant(m, "TCP_MD5SIG", TCP_MD5SIG); +#endif +#ifdef TCP_MD5SIG_MAXKEYLEN + PyModule_AddIntConstant(m, "TCP_MD5SIG_MAXKEYLEN", TCP_MD5SIG_MAXKEYLEN); +#endif /* IPX options */ |