hackedteam/vector-edk

View on GitHub
AppPkg/Applications/Python/Python-2.7.2/Demo/sockets/radio.py

Summary

Maintainability
A
0 mins
Test Coverage
# 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)