cpython/Demo/sockets
Amaury Forgeot d'Arc 388637d373 Remove last remnants of the ipaddr package.
The changes in mcast.py come from the first version of the patch for issue5379.
2009-06-23 21:53:46 +00:00
..
README Issue 5379 - applies patch supplied by philipp hagemeister to fix 2009-05-03 18:42:15 +00:00
broadcast.py Whitespace normalization. Ran reindent.py over the entire source tree. 2004-07-18 05:56:09 +00:00
echosvr.py Whitespace normalization. Ran reindent.py over the entire source tree. 2004-07-18 05:56:09 +00:00
finger.py Whitespace normalization. Ran reindent.py over the entire source tree. 2004-07-18 05:56:09 +00:00
ftp.py #687648 from Robert Schuppenies: use classic division. 2008-09-13 01:43:28 +00:00
gopher.py Whitespace normalization. Ran reindent.py over the entire source tree. 2004-07-18 05:56:09 +00:00
mcast.py Remove last remnants of the ipaddr package. 2009-06-23 21:53:46 +00:00
radio.py Whitespace normalization. Ran reindent.py over the entire source tree. 2004-07-18 05:56:09 +00:00
rpython.py Whitespace normalization. Ran reindent.py over the entire source tree. 2004-07-18 05:56:09 +00:00
rpythond.py Whitespace normalization. Ran reindent.py over the entire source tree. 2004-07-18 05:56:09 +00:00
telnet.py Whitespace normalization. Ran reindent.py over the entire source tree. 2004-07-18 05:56:09 +00:00
throughput.py Whitespace normalization. Ran reindent.py over the entire source tree. 2004-07-18 05:56:09 +00:00
udpecho.py Whitespace normalization. Ran reindent.py over the entire source tree. 2004-07-18 05:56:09 +00:00
unicast.py Whitespace normalization. Ran reindent.py over the entire source tree. 2004-07-18 05:56:09 +00:00
unixclient.py Add more whitespace; use a better socket name 2006-06-03 23:59:36 +00:00
unixserver.py Add more whitespace; use a better socket name 2006-06-03 23:59:36 +00:00

README

This directory contains some demonstrations of the socket module:

broadcast.py	 	Broadcast the time to radio.py.
echosvr.py		About the simplest TCP server possible.
finger.py		Client for the 'finger' protocol.
ftp.py			A very simple ftp client.
gopher.py		A simple gopher client.
mcast.py		IPv4/v6 multicast example
radio.py		Receive time broadcasts from broadcast.py.
telnet.py		Client for the 'telnet' protocol.
throughput.py		Client and server to measure TCP throughput.
unixclient.py		Unix socket example, client side
unixserver.py		Unix socket example, server side
udpecho.py		Client and server for the UDP echo protocol.