mirror of
https://github.com/Team-Resurgent/XBMC4Xbox.git
synced 2026-08-15 11:18:13 -07:00
If ever adding the XBMC4Xbox source to GitHub use "git add -f -A" or it wont add all the files.
16 lines
283 B
Python
16 lines
283 B
Python
# Send UDP broadcast packets
|
|
|
|
MYPORT = 50000
|
|
|
|
import sys, time
|
|
from socket import *
|
|
|
|
s = socket(AF_INET, SOCK_DGRAM)
|
|
s.bind(('', 0))
|
|
s.setsockopt(SOL_SOCKET, SO_BROADCAST, 1)
|
|
|
|
while 1:
|
|
data = repr(time.time()) + '\n'
|
|
s.sendto(data, ('<broadcast>', MYPORT))
|
|
time.sleep(2)
|