diff options
Diffstat (limited to 'Demo/sockets/radio.py')
-rwxr-xr-x | Demo/sockets/radio.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Demo/sockets/radio.py b/Demo/sockets/radio.py new file mode 100755 index 0000000..4bb55ff --- /dev/null +++ b/Demo/sockets/radio.py @@ -0,0 +1,13 @@ +# 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 = s.recv(1500) + sys.stdout.write(data) |