Server Bound to Specific Address : Socket Server « Network « Python






Server Bound to Specific Address

 
import socket, traceback

host = '127.0.0.1'
port = 51423

s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
s.bind((host, port))
s.listen(1)

while 1:
    clientsock, clientaddr = s.accept()
    print "Got connection from", clientsock.getpeername()
    while 1:
        data = clientsock.recv(4096)
        if not len(data):
            break
        clientsock.sendall(data)
    clientsock.close()


           
         
  








Related examples in the same category

1.Delaying Server
2.Simple Server waiting for connections
3.Simple Server
4.A Simple Server to Capture Single Short Requests
5.Echo Server