Guido van Rossum | 814d7cd | 1992-08-10 10:46:25 +0000 | [diff] [blame] | 1 | This directory contains some demonstrations of the socket module: |
Guido van Rossum | 22825e8 | 1991-07-01 18:32:32 +0000 | [diff] [blame] | 2 | |
Guido van Rossum | 814d7cd | 1992-08-10 10:46:25 +0000 | [diff] [blame] | 3 | broadcast.py Broadcast the time to radio.py. |
Guido van Rossum | 22825e8 | 1991-07-01 18:32:32 +0000 | [diff] [blame] | 4 | echosvr.py About the simplest TCP server possible. |
| 5 | finger.py Client for the 'finger' protocol. |
Guido van Rossum | 814d7cd | 1992-08-10 10:46:25 +0000 | [diff] [blame] | 6 | ftp.py A simple ftp client. |
Guido van Rossum | 22825e8 | 1991-07-01 18:32:32 +0000 | [diff] [blame] | 7 | telnet.py Client for the 'telnet' protocol. |
| 8 | throughput.py Client and server to measure TCP throughput. |
| 9 | udpecho.py Client and server for the UDP echo protocol. |
Guido van Rossum | 814d7cd | 1992-08-10 10:46:25 +0000 | [diff] [blame] | 10 | radio.py Receive time broadcasts from broadcast.py. |
Guido van Rossum | 00c5ad6 | 1992-09-08 21:19:46 +0000 | [diff] [blame] | 11 | |
| 12 | The following two files are only relevant on SGI machines (or other |
| 13 | systems that support multicast): |
| 14 | |
| 15 | mcast.py A Python translation of |
| 16 | /usr/people/4Dgifts/examples/network/mcast.c |
| 17 | IN.py Needed by mcast.py -- translation of <netinet/in.h> |