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 | 8208702 | 1992-10-25 19:18:23 +0000 | [diff] [blame] | 6 | ftp.py A very simple ftp client. |
| 7 | gopher.py A simple gopher client. |
Gregory P. Smith | 2b1a467 | 2009-05-03 19:09:56 +0000 | [diff] [blame^] | 8 | mcast.py IPv4/v6 multicast example |
Guido van Rossum | dd918a9 | 1998-01-28 16:54:00 +0000 | [diff] [blame] | 9 | radio.py Receive time broadcasts from broadcast.py. |
Guido van Rossum | 22825e8 | 1991-07-01 18:32:32 +0000 | [diff] [blame] | 10 | telnet.py Client for the 'telnet' protocol. |
| 11 | throughput.py Client and server to measure TCP throughput. |
Guido van Rossum | dd918a9 | 1998-01-28 16:54:00 +0000 | [diff] [blame] | 12 | unixclient.py Unix socket example, client side |
| 13 | unixserver.py Unix socket example, server side |
Guido van Rossum | 22825e8 | 1991-07-01 18:32:32 +0000 | [diff] [blame] | 14 | udpecho.py Client and server for the UDP echo protocol. |