mirror of
https://github.com/python/cpython.git
synced 2024-12-01 11:15:56 +01:00
17 lines
220 B
Python
17 lines
220 B
Python
# Send UDP broadcast packets
|
|
|
|
MYPORT = 50000
|
|
|
|
import sys, time
|
|
from socket import *
|
|
|
|
s = socket(AF_INET, SOCK_DGRAM)
|
|
s.bind(('', 0))
|
|
|
|
while 1:
|
|
data = `time.time()` + '\n'
|
|
s.sendto(data, ('', MYPORT))
|
|
time.sleep(2)
|
|
|
|
|