---------------------------------------------------------------------- This is the API documentation for the gdtest_config_combo_e library. ---------------------------------------------------------------------- ## Functions Public functions connect(host: str, port: int = 8080) -> bool Connect to a remote host. :param host: The hostname or IP address. :type host: str :param port: The port number (default 8080). :type port: int :returns: True if connected successfully. :rtype: bool disconnect() -> None Disconnect from the remote host. :returns: None send(data: bytes) -> int Send data to the remote host. :param data: The bytes to send. :type data: bytes :returns: Number of bytes sent. :rtype: int receive(max_bytes: int = 1024) -> bytes Receive data from the remote host. :param max_bytes: Maximum bytes to receive. :type max_bytes: int :returns: The received bytes. :rtype: bytes