mirror of
				https://github.com/python/cpython.git
				synced 2025-10-27 19:54:38 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			382 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			382 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # Echo server demo using Unix sockets (handles one connection only)
 | |
| # Piet van Oostrum
 | |
| from socket import *
 | |
| FILE = 'blabla'             
 | |
| s = socket(AF_UNIX, SOCK_STREAM)
 | |
| s.bind(FILE)
 | |
| print 'Sock name is: ['+s.getsockname()+']'
 | |
| s.listen(1)
 | |
| conn, addr = s.accept()
 | |
| print 'Connected by', addr
 | |
| while 1:
 | |
|     data = conn.recv(1024)
 | |
|     if not data: break
 | |
|     conn.send(data)
 | |
| conn.close()
 | 
