mirror of
https://github.com/python/cpython.git
synced 2025-07-23 03:05:38 +00:00
13 lines
216 B
Python
Executable file
13 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)
|