Home | History | Annotate | only in /external/python/cpython2/Demo/sockets
Up to higher level directory
NameDateSize
broadcast.py22-Oct-2020283
echosvr.py22-Oct-2020739
finger.py22-Oct-20201.2K
ftp.py22-Oct-20203.8K
gopher.py22-Oct-20209.6K
mcast.py22-Oct-20202.2K
radio.py22-Oct-2020287
README22-Oct-2020628
rpython.py22-Oct-2020714
rpythond.py22-Oct-20201.2K
telnet.py22-Oct-20202.9K
throughput.py22-Oct-20202K
udpecho.py22-Oct-20201.4K
unicast.py22-Oct-2020230
unixclient.py22-Oct-2020232
unixserver.py22-Oct-2020414

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