Lines Matching full:client
79 A base class for handling client packets and issuing server responses for
101 to the given packet received from the client.
369 """Get address for the client to connect to."""
378 """Accept a single client connection to the server."""
384 """Receive a data packet from the connected client."""
387 """Send the data to the connected client."""
406 client, client_addr = self._server_socket.accept()
407 # The connected client inherits its timeout from self._socket,
408 # but we'll use a blocking socket for the client
409 client.settimeout(None)
410 self._connection = client
489 A simple TCP-based GDB server that can test client behavior by receiving
508 # Start a thread that waits for a client connection.
523 # For testing purposes, we only need to worry about one client
544 … "An exception happened when receiving the response from the gdb server. Closing the client..."
633 # Ignore ACKs from the client. For the future, we can consider
634 # adding validation code to make sure the client only sends ACKs