[issue27271] asyncio lost udp packets

Yury Selivanov report at bugs.python.org
Sat Jul 23 13:30:26 EDT 2016


Yury Selivanov added the comment:

> Can you prove that packets may be lost even in UNIX sockets ?
> (it is not related to this task directly)

Quoting wiki:

"""Like named pipes, Unix domain sockets support transmission of a reliable stream of bytes (SOCK_STREAM, compare to TCP). In addition, they support ordered and reliable transmission of datagrams (SOCK_SEQPACKET), or unordered and unreliable transmission of datagrams (SOCK_DGRAM, compare to UDP)."""

I'm also sure I saw that UDP can never be used as a reliable protocol in Stevens books.  (I'm sure you can google this too.)

----------

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue27271>
_______________________________________


More information about the Python-bugs-list mailing list