Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
53dbe39b46ef42aeef12c6f46f8575a794e20440
/
.
/
Demo
/
sockets
/
unixclient.py
blob: cdccb8458624289aa201823f5e75a567e319fde5 [
file
] [
log
] [
blame
]
# Echo client demo using Unix sockets
# Piet van Oostrum
from
socket
import
*
FILE
=
'unix-socket'
s
=
socket
(
AF_UNIX
,
SOCK_STREAM
)
s
.
connect
(
FILE
)
s
.
send
(
'Hello, world'
)
data
=
s
.
recv
(
1024
)
s
.
close
()
print
(
'Received'
,
repr
(
data
))