Sindbad~EG File Manager

Current Path : /proc/thread-self/root/lib64/python2.7/Demo/sockets/
Upload File :
Current File : //proc/thread-self/root/lib64/python2.7/Demo/sockets/radio.py

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

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists