Home | History | Annotate | Download | only in logging

Lines Matching defs:Server

57 #   _listener holds the server object doing the listening
799 Start up a socket server on the specified port, and listen for new
803 Returns a Thread object on which you can call start() to start the server,
804 and which you can join() when appropriate. To stop the server, call
849 if self.server.ready:
850 self.server.ready.set()
885 class Server(threading.Thread):
888 super(Server, self).__init__()
895 server = self.rcvr(port=self.port, handler=self.hdlr,
898 self.port = server.server_address[1]
902 _listener = server
904 server.serve_until_stopped()
906 return Server(ConfigSocketReceiver, ConfigStreamHandler, port)
910 Stop the listening server which was created with a call to listen().