commit | a0f1734e447aa8106d96253ebb73a4a618ec41d8 | [log] [tgz] |
---|---|---|
author | Martin v. Löwis <martin@v.loewis.de> | Fri Oct 03 13:56:20 2003 +0000 |
committer | Martin v. Löwis <martin@v.loewis.de> | Fri Oct 03 13:56:20 2003 +0000 |
tree | 77f1b17f8d383c4ae79cee4fde5888f49f7ef4ce | |
parent | 76bafc64ce10b986a9de2db19fc4c72662c31e6b [diff] [blame] |
Patch #813445: Add missing socket.IPPROTO_IPV6. Backported to 2.3.
diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c index 36b4b3d..8fd5963 100644 --- a/Modules/socketmodule.c +++ b/Modules/socketmodule.c
@@ -3749,6 +3749,9 @@ #ifdef IPPROTO_IPV4 PyModule_AddIntConstant(m, "IPPROTO_IPV4", IPPROTO_IPV4); #endif +#ifdef IPPROTO_IPV6 + PyModule_AddIntConstant(m, "IPPROTO_IPV6", IPPROTO_IPV6); +#endif #ifdef IPPROTO_IPIP PyModule_AddIntConstant(m, "IPPROTO_IPIP", IPPROTO_IPIP); #endif