Server With Error Handling : Socket Error Handle « Network « Python






Server With Error Handling

 
import socket, traceback

host = ''
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:
    try:
        clientsock, clientaddr = s.accept()
        print "Got connection from", clientsock.getpeername()
        # Process the request here
        # Close the connection
        clientsock.close()
    except KeyboardInterrupt:
        raise
    except:
        traceback.print_exc()
        continue
          
         
  








Related examples in the same category

1.Error Handling ExampleError Handling Example
2.Create handler for socket handler