0
0
mirror of https://github.com/python/cpython.git synced 2024-11-28 16:45:42 +01:00
cpython/Demo/sockets/broadcast.py
1992-05-19 13:52:02 +00:00

18 lines
249 B
Python
Executable File

# 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)