Home | History | Annotate | only in /external/python/cpython2/Demo/sockets
Up to higher level directory
NameDateSize
broadcast.py06-Dec-2017283
echosvr.py06-Dec-2017739
finger.py06-Dec-20171.2K
ftp.py06-Dec-20173.8K
gopher.py06-Dec-20179.6K
mcast.py06-Dec-20172.2K
radio.py06-Dec-2017287
README06-Dec-2017628
rpython.py06-Dec-2017714
rpythond.py06-Dec-20171.2K
telnet.py06-Dec-20172.9K
throughput.py06-Dec-20172K
udpecho.py06-Dec-20171.4K
unicast.py06-Dec-2017230
unixclient.py06-Dec-2017232
unixserver.py06-Dec-2017414

README

      1 This directory contains some demonstrations of the socket module:
      2 
      3 broadcast.py	 	Broadcast the time to radio.py.
      4 echosvr.py		About the simplest TCP server possible.
      5 finger.py		Client for the 'finger' protocol.
      6 ftp.py			A very simple ftp client.
      7 gopher.py		A simple gopher client.
      8 mcast.py		IPv4/v6 multicast example
      9 radio.py		Receive time broadcasts from broadcast.py.
     10 telnet.py		Client for the 'telnet' protocol.
     11 throughput.py		Client and server to measure TCP throughput.
     12 unixclient.py		Unix socket example, client side
     13 unixserver.py		Unix socket example, server side
     14 udpecho.py		Client and server for the UDP echo protocol.
     15