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)