Patch #813445: Add missing socket.IPPROTO_IPV6. Backported to 2.3.

This commit is contained in:
Martin v. Löwis 2003-10-03 13:56:20 +00:00
parent 76bafc64ce
commit a0f1734e44

View file

@ -3749,6 +3749,9 @@ init_socket(void)
#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