Hi, I added an exampl of UDP server in asyncio documentation: https://docs.python.org/dev/library/asyncio-protocol.html#udp-echo-server-protocol
My example is based on Tulip example examples/udp_echo.py. In Tulip example, I see that the MyServerUdpEchoProtocol has error_received() and connection_lost() methods. When are these methods called? UDP is not a connected protocol, how can you loose a connection? For error_received, the documentation is here: https://docs.python.org/dev/library/asyncio-protocol.html#asyncio.DatagramProtocol.error_received Victor
