• Home
  • History
  • Annotate
  • only in /external/python/cpython2/Demo/sockets/
NameDateSize

..10-Aug-20184 KiB

broadcast.py10-Aug-2018283

echosvr.py10-Aug-2018739

finger.py10-Aug-20181.2 KiB

ftp.py10-Aug-20183.8 KiB

gopher.py10-Aug-20189.6 KiB

mcast.py10-Aug-20182.2 KiB

radio.py10-Aug-2018287

README10-Aug-2018628

rpython.py10-Aug-2018714

rpythond.py10-Aug-20181.2 KiB

telnet.py10-Aug-20182.9 KiB

throughput.py10-Aug-20182 KiB

udpecho.py10-Aug-20181.4 KiB

unicast.py10-Aug-2018230

unixclient.py10-Aug-2018232

unixserver.py10-Aug-2018414

README

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