diff options
author | Zackery Spytz <zspytz@gmail.com> | 2021-05-29 22:46:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-29 22:46:01 (GMT) |
commit | 5f28752f5b51a1866f2428eeaf6082266723c78d (patch) | |
tree | b055bc508a8d96d3936c44feaaf79804ef1c776e | |
parent | 0b11c429c7f1721d9ffb9ae19e3e8e2e7bd6444d (diff) | |
download | cpython-5f28752f5b51a1866f2428eeaf6082266723c78d.zip cpython-5f28752f5b51a1866f2428eeaf6082266723c78d.tar.gz cpython-5f28752f5b51a1866f2428eeaf6082266723c78d.tar.bz2 |
bpo-43750: Fix incorrect reference to PACKET_MULTIHOST in the docs (GH-25241)
It should be PACKET_MULTICAST, not PACKET_MULTIHOST.
-rwxr-xr-x | Doc/library/socket.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/socket.rst b/Doc/library/socket.rst index 8a1fc96..da3d0d8 100755 --- a/Doc/library/socket.rst +++ b/Doc/library/socket.rst @@ -188,7 +188,7 @@ created. Socket addresses are represented as follows: - ``PACKET_HOST`` (the default) - Packet addressed to the local host. - ``PACKET_BROADCAST`` - Physical-layer broadcast packet. - - ``PACKET_MULTIHOST`` - Packet sent to a physical-layer multicast address. + - ``PACKET_MULTICAST`` - Packet sent to a physical-layer multicast address. - ``PACKET_OTHERHOST`` - Packet to some other host that has been caught by a device driver in promiscuous mode. - ``PACKET_OUTGOING`` - Packet originating from the local host that is |