Lines Matching +full:wait +full:- +full:on +full:- +full:read
30 specifies a new read timeout value to override the default one.
35 username (str): User on the remote host with access
37 password (str): Password for the user on the remote
40 read_timeout (int, optional): New read timeout value to override
77 self.tnclient.write(self.username.encode("utf-8") + b"\n")
82 self.tnclient.write(self.password.encode("utf-8") + b"\n")
141 Executes a command on the remote host using Telnet and returns the
144 This method executes a provided command on the remote host using
152 cmd (str): The command to be executed on the
160 # Wait time for command execution before reading the output.
161 # Use user input wait time for command execution if one exists.
168 # Execute the command and read the command output.
171 # Do at least one non-blocking read.
172 # to flush whatever data is in the read buffer.
177 self.tnclient.write(cmd.encode("utf-8") + b"\n")
181 # Read the command output one block at a time.