mirror of
https://github.com/python/cpython.git
synced 2024-11-25 01:20:47 +01:00
14 lines
216 B
Python
Executable File
14 lines
216 B
Python
Executable File
# 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)
|