mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 13:41:24 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			273 B
		
	
	
	
		
			Python
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			273 B
		
	
	
	
		
			Python
		
	
	
		
			Executable file
		
	
	
	
	
| # Send UDP broadcast packets
 | |
| 
 | |
| MYPORT = 50000
 | |
| 
 | |
| import sys, time
 | |
| from socket import *
 | |
| 
 | |
| s = socket(AF_INET, SOCK_DGRAM)
 | |
| s.bind(('', 0))
 | |
| s.setsockopt(SOL_SOCKET, SO_BROADCAST, 1)
 | |
| 
 | |
| while 1:
 | |
| 	data = `time.time()` + '\n'
 | |
| 	s.sendto(data, ('<broadcast>', MYPORT))
 | |
| 	time.sleep(2)
 | |
| 
 | |
| 	
 | 
