Simple Server waiting for connections : Socket Server « Network « Python






Simple Server waiting for connections

 
import socket

host = ''                              
port = 53333

s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
s.bind((host, port))
print "Waiting for connections..."
s.listen(1)

while 1:
    clientsock, clientaddr = s.accept()
    print "Got connection from", clientsock.getpeername()
    clientsock.close()

           
         
  








Related examples in the same category

1.Server Bound to Specific Address
2.Delaying Server
3.Simple Server
4.A Simple Server to Capture Single Short Requests
5.Echo Server