blob: 11dc7cb7849f2058aa81592994cd7cf148def38e [file] [log] [blame]
Guido van Rossum814d7cd1992-08-10 10:46:25 +00001This directory contains some demonstrations of the socket module:
Guido van Rossum22825e81991-07-01 18:32:32 +00002
Guido van Rossum814d7cd1992-08-10 10:46:25 +00003broadcast.py Broadcast the time to radio.py.
Guido van Rossum22825e81991-07-01 18:32:32 +00004echosvr.py About the simplest TCP server possible.
5finger.py Client for the 'finger' protocol.
Guido van Rossum814d7cd1992-08-10 10:46:25 +00006ftp.py A simple ftp client.
Guido van Rossum22825e81991-07-01 18:32:32 +00007telnet.py Client for the 'telnet' protocol.
8throughput.py Client and server to measure TCP throughput.
9udpecho.py Client and server for the UDP echo protocol.
Guido van Rossum814d7cd1992-08-10 10:46:25 +000010radio.py Receive time broadcasts from broadcast.py.
Guido van Rossum00c5ad61992-09-08 21:19:46 +000011
12The following two files are only relevant on SGI machines (or other
13systems that support multicast):
14
15mcast.py A Python translation of
16 /usr/people/4Dgifts/examples/network/mcast.c
17IN.py Needed by mcast.py -- translation of <netinet/in.h>