Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f26963 commit cdd3984Copy full SHA for cdd3984
1 file changed
Doc/library/socket.rst
@@ -2076,10 +2076,10 @@ the interface::
2076
# Include IP headers
2077
s.setsockopt(socket.IPPROTO_IP, socket.IP_HDRINCL, 1)
2078
2079
- # receive all packages
+ # receive all packets
2080
s.ioctl(socket.SIO_RCVALL, socket.RCVALL_ON)
2081
2082
- # receive a package
+ # receive a packet
2083
print(s.recvfrom(65565))
2084
2085
# disabled promiscuous mode
0 commit comments