Skip to content

Latest commit

 

History

History
README
------

UDP examples
* server-udp.py:		server that accepts incoming UDP messages
* client-udp.py:		client that sends UDP messages to the server
* client-server-udp.py:	example in which the server responds to the client

TCP examples
* server-tcp.py:		server that accepts incoming TCP messages (with response)
* server-tcp2.py:		server that accepts incoming TCP messages (with response)
						based on socketserver class (Python 3.x required)
* client-tcp.py:		client that sends TCP messages to the server (with response)