Add IPPROTO_MPTCP constant when defined in the system headers.
.. versionchanged:: 3.9
The CAN_J1939 protocol was added.
+ .. versionchanged:: 3.10
+ The IPPROTO_MPTCP protocol was added.
+
.. function:: socketpair([family[, type[, proto]]])
Build a pair of connected socket objects using the given address family, socket
The exception :exc:`socket.timeout` is now an alias of :exc:`TimeoutError`.
(Contributed by Christian Heimes in :issue:`42413`.)
+Added option to create MPTCP sockets with ``IPPROTO_MPTCP``
+(Contributed by Rui Cunha in :issue:`43571`.)
+
sys
---
--- /dev/null
+It's now possible to create MPTCP sockets with IPPROTO_MPTCP
\ No newline at end of file
#ifdef IPPROTO_BIP
PyModule_AddIntMacro(m, IPPROTO_BIP);
#endif
+#ifdef IPPROTO_MPTCP
+ PyModule_AddIntMacro(m, IPPROTO_MPTCP);
+#endif
/**/
#ifdef IPPROTO_RAW
PyModule_AddIntMacro(m, IPPROTO_RAW);