mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 10:26:02 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			274 B
		
	
	
	
		
			Python
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			274 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, wherefrom = s.recvfrom(1500, 0)
 | |
| 	sys.stderr.write(`wherefrom` + '\n')
 | |
| 	sys.stdout.write(data)
 | 
