Searched refs:fsock (Results 1 – 6 of 6) sorted by relevance
| /plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/System/SSH/ |
| D | Agent.php | 87 private $fsock; variable in phpseclib3\\System\\SSH\\Agent 148 $this->fsock = fsockopen('unix://' . $address, 0, $errno, $errstr); 149 if (!$this->fsock) { 166 if (!$this->fsock) { 171 if (strlen($packet) != fputs($this->fsock, $packet)) { 199 $identity = (new Identity($this->fsock)) 282 if (strlen($this->socket_buffer) != fwrite($this->fsock, $this->socket_buffer)) {
|
| /plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Agent/ |
| D | Identity.php | 76 private $fsock; variable in phpseclib3\\System\\SSH\\Agent\\Identity 104 * @param resource $fsock 107 public function __construct($fsock) argument 109 $this->fsock = $fsock; 293 if (strlen($packet) != fputs($this->fsock, $packet)) {
|
| /plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Net/ |
| D | SSH2.php | 209 public $fsock; variable in phpseclib3\\Net\\SSH2 1299 $this->fsock = $host; 1399 if (!is_resource($this->fsock)) { 1404 …$this->fsock = @fsockopen($this->host, $this->port, $errno, $errstr, $this->curTimeout == 0 ? 1000… 1405 if (!$this->fsock) { 1422 fputs($this->fsock, $this->identifier . "\r\n"); 1433 while (!feof($this->fsock) && !preg_match('#(.*)^(SSH-(\d\.\d+).*)#ms', $data, $matches)) { 1440 $read = [$this->fsock]; 1452 $temp = stream_get_line($this->fsock, 255, "\n"); 1478 if (feof($this->fsock)) { [all …]
|
| /plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Common/Traits/ |
| D | ReadBytes.php | 36 $temp = fread($this->fsock, $length);
|
| /plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/File/ |
| D | X509.php | 1171 $fsock = @fsockopen($parts['host'], isset($parts['port']) ? $parts['port'] : 80); 1172 if (!$fsock) { 1175 fputs($fsock, "GET $parts[path] HTTP/1.0\r\n"); 1176 fputs($fsock, "Host: $parts[host]\r\n\r\n"); 1177 $line = fgets($fsock, 1024); 1187 while (!feof($fsock) && fgets($fsock, 1024) != "\r\n") { 1190 while (!feof($fsock)) { 1191 $temp = fread($fsock, 1024);
|
| /plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP/ |
| D | Stream.php | 474 return $this->sftp->fsock;
|