Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython2
/
72c0141f03f723fe5269cb9cdcb1541a4c6811e8
/
.
/
Demo
/
sockets
/
unixclient.py
blob: fdbcc7aec1e95320f88953e75016fc4a2b4b00f4 [
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
)