git: 9front

ref: 2e28db1d2f448f19de79b963f44c76da15c746c7
dir: /sys/src/cmd/python/Demo/sockets/radio.py/

View raw version
# Receive UDP packets transmitted by a broadcasting service

MYPORT = 50000

import sys
from socket import *

s = socket(AF_INET, SOCK_DGRAM)
s.bind(('', MYPORT))

while 1:
    data, wherefrom = s.recvfrom(1500, 0)
    sys.stderr.write(repr(wherefrom) + '\n')
    sys.stdout.write(data)