Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython2
/
9ee7e159663ff81b3651a556dfde73574724ac26
/
.
/
Demo
/
sockets
/
broadcast.py
blob: 9ed900f0c6f4a11b7976f5a95444c625f58b0fd9 [
file
] [
log
] [
blame
]
# Send UDP broadcast packets
MYPORT
=
50000
import
sys
,
time
from
socket
import
*
s
=
socket
(
AF_INET
,
SOCK_DGRAM
)
s
.
bind
(
''
,
0
)
s
.
allowbroadcast
(
1
)
while
1
:
data
=
`
time
.
time
()`
+
'\n'
s
.
sendto
(
data
,
(
'<broadcast>'
,
MYPORT
))
time
.
sleep
(
2
)