summaryrefslogtreecommitdiff
path: root/Demo/sockets/unixclient.py
diff options
context:
space:
mode:
Diffstat (limited to 'Demo/sockets/unixclient.py')
-rw-r--r--Demo/sockets/unixclient.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/Demo/sockets/unixclient.py b/Demo/sockets/unixclient.py
index cccd617e97..fdbcc7aec1 100644
--- a/Demo/sockets/unixclient.py
+++ b/Demo/sockets/unixclient.py
@@ -1,7 +1,9 @@
# Echo client demo using Unix sockets
# Piet van Oostrum
+
from socket import *
-FILE = 'blabla'
+
+FILE = 'unix-socket'
s = socket(AF_UNIX, SOCK_STREAM)
s.connect(FILE)
s.send('Hello, world')