Kaydet (Commit) 4ec060ad authored tarafından Guido van Rossum's avatar Guido van Rossum

unicast pendant for broadcast.py

üst 171191ef
# 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)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment