Home | History | Annotate | only in /external/python/cpython2/Demo/sockets
Up to higher level directory
NameDateSize
broadcast.py21-Aug-2018283
echosvr.py21-Aug-2018739
finger.py21-Aug-20181.2K
ftp.py21-Aug-20183.8K
gopher.py21-Aug-20189.6K
mcast.py21-Aug-20182.2K
radio.py21-Aug-2018287
README21-Aug-2018628
rpython.py21-Aug-2018714
rpythond.py21-Aug-20181.2K
telnet.py21-Aug-20182.9K
throughput.py21-Aug-20182K
udpecho.py21-Aug-20181.4K
unicast.py21-Aug-2018230
unixclient.py21-Aug-2018232
unixserver.py21-Aug-2018414

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