SSH2: add bytesUntilKeyReexchange() method

This commit is contained in:
terrafrost 2024-11-28 17:18:13 -06:00
parent 88fd8e00b2
commit 57435e2401

View File

@ -5663,4 +5663,12 @@ class Net_SSH2
{
$this->smartMFA = false;
}
/**
* How many bytes until the next key re-exchange?
*/
function bytesUntilKeyReexchange($bytes)
{
$this->doKeyReexchangeAfterXBytes = $bytes;
}
}