diff options
author | Rui Cunha <rpmonteiro24@hotmail.com> | 2021-03-20 22:04:56 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-20 22:04:56 (GMT) |
commit | b05b48dd7ab68bf0046356f2abd6d7fe3b5b3d77 (patch) | |
tree | 16db8b9d1324c2cc442cb3d3083144de87b8205b /Doc/library/socket.rst | |
parent | 66c8adfa27aeea004657ef29b6db4e4c360ad611 (diff) | |
download | cpython-b05b48dd7ab68bf0046356f2abd6d7fe3b5b3d77.zip cpython-b05b48dd7ab68bf0046356f2abd6d7fe3b5b3d77.tar.gz cpython-b05b48dd7ab68bf0046356f2abd6d7fe3b5b3d77.tar.bz2 |
bpo-43571: Add IPPROTO_MPTCP macro (GH-24946)
Add IPPROTO_MPTCP constant when defined in the system headers.
Diffstat (limited to 'Doc/library/socket.rst')
-rwxr-xr-x | Doc/library/socket.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/library/socket.rst b/Doc/library/socket.rst index 2255b82..31d804c 100755 --- a/Doc/library/socket.rst +++ b/Doc/library/socket.rst @@ -610,6 +610,9 @@ The following functions all create :ref:`socket objects <socket-objects>`. .. 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 |