mirror of
https://github.com/python/cpython.git
synced 2025-11-09 18:11:38 +00:00
18 lines
249 B
Python
18 lines
249 B
Python
|
|
# 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)
|
||
|
|
|
||
|
|
|