Sign in
android
/
toolchain
/
python
/
refs/heads/ndk-release-r20
/
.
/
Python-2.7.5
/
Demo
/
sockets
/
unixclient.py
blob: fdbcc7aec1e95320f88953e75016fc4a2b4b00f4 [
file
] [
log
] [
blame
] [
edit
]
# 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
)