mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-11-11 08:10:58 +00:00
stream_set_blocking calls were unnecessary
This commit is contained in:
parent
5d91746f73
commit
31ad9aacbd
@ -800,8 +800,6 @@ class Net_SSH2 {
|
|||||||
$read = array($this->fsock);
|
$read = array($this->fsock);
|
||||||
$write = $except = NULL;
|
$write = $except = NULL;
|
||||||
|
|
||||||
stream_set_blocking($this->fsock, false);
|
|
||||||
|
|
||||||
$sec = floor($timeout);
|
$sec = floor($timeout);
|
||||||
$usec = 1000000 * ($timeout - $sec);
|
$usec = 1000000 * ($timeout - $sec);
|
||||||
|
|
||||||
@ -812,8 +810,6 @@ class Net_SSH2 {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
stream_set_blocking($this->fsock, true);
|
|
||||||
|
|
||||||
/* According to the SSH2 specs,
|
/* According to the SSH2 specs,
|
||||||
|
|
||||||
"The server MAY send other lines of data before sending the version
|
"The server MAY send other lines of data before sending the version
|
||||||
@ -2185,21 +2181,16 @@ class Net_SSH2 {
|
|||||||
$read = array($this->fsock);
|
$read = array($this->fsock);
|
||||||
$write = $except = NULL;
|
$write = $except = NULL;
|
||||||
|
|
||||||
stream_set_blocking($this->fsock, false);
|
|
||||||
|
|
||||||
$start = strtok(microtime(), ' ') + strtok(''); // http://php.net/microtime#61838
|
$start = strtok(microtime(), ' ') + strtok(''); // http://php.net/microtime#61838
|
||||||
$sec = floor($this->curTimeout);
|
$sec = floor($this->curTimeout);
|
||||||
$usec = 1000000 * ($this->curTimeout - $sec);
|
$usec = 1000000 * ($this->curTimeout - $sec);
|
||||||
// on windows this returns a "Warning: Invalid CRT parameters detected" error
|
// on windows this returns a "Warning: Invalid CRT parameters detected" error
|
||||||
if (!@stream_select($read, $write, $except, $sec, $usec) && !count($read)) {
|
if (!@stream_select($read, $write, $except, $sec, $usec) && !count($read)) {
|
||||||
stream_set_blocking($this->fsock, true);
|
|
||||||
$this->_close_channel($client_channel);
|
$this->_close_channel($client_channel);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
$elapsed = strtok(microtime(), ' ') + strtok('') - $start;
|
$elapsed = strtok(microtime(), ' ') + strtok('') - $start;
|
||||||
$this->curTimeout-= $elapsed;
|
$this->curTimeout-= $elapsed;
|
||||||
|
|
||||||
stream_set_blocking($this->fsock, true);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$response = $this->_get_binary_packet();
|
$response = $this->_get_binary_packet();
|
||||||
|
Loading…
Reference in New Issue
Block a user