Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
bb14d4bc173559dced0f69fb0b8a43a0594f75f8
/
.
/
Demo
/
sockets
/
unixclient.py
blob: 5e87eed0de2512bd830b245979798eee708f9a50 [
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
(
b
'Hello, world'
)
data
=
s
.
recv
(
1024
)
s
.
close
()
print
(
'Received'
,
repr
(
data
))