Home | History | Annotate | Download | only in logging

Lines Matching defs:Server

50 #   _listener holds the server object doing the listening
808 Start up a socket server on the specified port, and listen for new
812 Returns a Thread object on which you can call start() to start the server,
813 and which you can join() when appropriate. To stop the server, call
858 if self.server.ready:
859 self.server.ready.set()
898 class Server(threading.Thread):
901 super(Server, self).__init__()
908 server = self.rcvr(port=self.port, handler=self.hdlr,
911 self.port = server.server_address[1]
915 _listener = server
917 server.serve_until_stopped()
919 return Server(ConfigSocketReceiver, ConfigStreamHandler, port)
923 Stop the listening server which was created with a call to listen().