Home
last modified time | relevance | path

Searched refs:fsock (Results 1 – 6 of 6) sorted by relevance

/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/System/SSH/
H A DAgent.php87 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/
H A DIdentity.php76 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/
H A DSSH2.php209 public $fsock; variable in phpseclib3\\Net\\SSH2
1299 $this->fsock = $host;
1399 if (!is_resource($this->fsock)) {
1405 if (!$this->fsock) {
1440 $read = [$this->fsock];
1478 if (feof($this->fsock)) {
3404 $read = [$this->fsock];
3448 if (!is_resource($this->fsock) || feof($this->fsock)) {
4168 if (!is_resource($this->fsock) || feof($this->fsock)) {
4479 if (is_resource($this->fsock) && get_resource_type($this->fsock) === 'stream') {
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Common/Traits/
H A DReadBytes.php36 $temp = fread($this->fsock, $length);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/File/
H A DX509.php1171 $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/
H A DStream.php474 return $this->sftp->fsock;