summaryrefslogtreecommitdiff
path: root/Demo/sockets
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1992-10-25 19:18:23 +0000
committerGuido van Rossum <guido@python.org>1992-10-25 19:18:23 +0000
commit234c09a533631ec4add865fe7fcc8a28b8b2602d (patch)
tree04b8f679163ce520d371b807a6127eee4a0832e9 /Demo/sockets
parent4d67cdcfb72d8b2ab80fb517f592a7834de4a787 (diff)
downloadcpython-234c09a533631ec4add865fe7fcc8a28b8b2602d.tar.gz
Added gopher.py; removed IN.py
Diffstat (limited to 'Demo/sockets')
-rw-r--r--Demo/sockets/README11
1 files changed, 7 insertions, 4 deletions
diff --git a/Demo/sockets/README b/Demo/sockets/README
index 11dc7cb784..e844ac6be7 100644
--- a/Demo/sockets/README
+++ b/Demo/sockets/README
@@ -3,15 +3,18 @@ This directory contains some demonstrations of the socket module:
broadcast.py Broadcast the time to radio.py.
echosvr.py About the simplest TCP server possible.
finger.py Client for the 'finger' protocol.
-ftp.py A simple ftp client.
+ftp.py A very simple ftp client.
+gopher.py A simple gopher client.
telnet.py Client for the 'telnet' protocol.
throughput.py Client and server to measure TCP throughput.
udpecho.py Client and server for the UDP echo protocol.
radio.py Receive time broadcasts from broadcast.py.
-The following two files are only relevant on SGI machines (or other
-systems that support multicast):
+The following file is only relevant on SGI machines (or other systems
+that support multicast):
mcast.py A Python translation of
/usr/people/4Dgifts/examples/network/mcast.c
-IN.py Needed by mcast.py -- translation of <netinet/in.h>
+ (Note that IN.py is in ../../lib/sgi.)
+
+See also ../../lib/nntp.py for another example of socket code.