summaryrefslogtreecommitdiffstats
path: root/Demo/sockets
diff options
context:
space:
mode:
Diffstat (limited to 'Demo/sockets')
-rw-r--r--Demo/sockets/unixserver.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Demo/sockets/unixserver.py b/Demo/sockets/unixserver.py
index 3d6f3c3..d4c7061 100644
--- a/Demo/sockets/unixserver.py
+++ b/Demo/sockets/unixserver.py
@@ -1,4 +1,5 @@
-# Echo server program using Unix sockets (handles one connection only)
+# Echo server demo using Unix sockets (handles one connection only)
+# Piet van Oostrum
from socket import *
FILE = 'blabla'
s = socket(AF_UNIX, SOCK_STREAM)