Packet handling
Implementation of the base SSH packet protocol.
list of weak references to the object (if defined)
Tells Packetizer that the handshake has completed.
Checks if the handshake has timed out.
If start_handshake wasn’t called before the call to this function, the return value will always be False. If the handshake completed before a timeout was reached, the return value will be False
Returns: | handshake time out status, as a bool |
---|
Returns True if a new set of keys needs to be negotiated. This will be triggered during a packet read or write, so it should be checked after every read or write, or at least after every few.
Read as close to N bytes as possible, blocking as long as necessary.
Parameters: | n (int) – number of bytes to read |
---|---|
Returns: | the data read, as a str |
Raises EOFError: | |
if the socket was closed before all the bytes could be read |
Only one thread should ever be in this function (no other locking is done).
Raises: |
|
---|
Read a line from the socket. We assume no data is pending after the line, so it’s okay to attempt large reads.
Write a block of data using the current cipher, as an SSH block.
Switch inbound data cipher.
Turn on/off the callback keepalive. If interval seconds pass with no data read from or written to the socket, the callback will be executed and the timer will be reset.
Set the Python log object to use for logging.
Switch outbound data cipher.
Tells Packetizer that the handshake process started. Starts a book keeping timer that can signal a timeout in the handshake process.
Parameters: | timeout (float) – amount of seconds to wait before timing out |
---|