1
0
mirror of https://github.com/danog/phpseclib.git synced 2024-12-02 17:52:59 +01:00

SSH2: make exceptions more useful for read() / write()

This commit is contained in:
terrafrost 2023-05-07 11:07:07 -05:00
parent 06f45881f9
commit f664ccb521

View File

@ -3063,6 +3063,10 @@ class SSH2
*/ */
public function read($expect = '', $mode = self::READ_SIMPLE, $channel = null) public function read($expect = '', $mode = self::READ_SIMPLE, $channel = null)
{ {
if (!$this->isAuthenticated()) {
throw new InsufficientSetupException('Operation disallowed prior to login()');
}
$this->curTimeout = $this->timeout; $this->curTimeout = $this->timeout;
$this->is_timeout = false; $this->is_timeout = false;
@ -3120,6 +3124,10 @@ class SSH2
*/ */
public function write($cmd, $channel = null) public function write($cmd, $channel = null)
{ {
if (!$this->isAuthenticated()) {
throw new InsufficientSetupException('Operation disallowed prior to login()');
}
if ($channel === null) { if ($channel === null) {
$channel = $this->get_interactive_channel(); $channel = $this->get_interactive_channel();
} }