Home
last modified time | relevance | path

Searched refs:fsock (Results 1 – 7 of 7) sorted by path

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
H A DX509.php1133 $fsock = @fsockopen($parts['host'], isset($parts['port']) ? $parts['port'] : 80);
1134 if (!$fsock) {
1141 fputs($fsock, "GET $path HTTP/1.0\r\n");
1142 fputs($fsock, "Host: $parts[host]\r\n\r\n");
1143 $line = fgets($fsock, 1024);
1153 while (!feof($fsock) && fgets($fsock, 1024) != "\r\n") {
1156 while (!feof($fsock)) {
1157 $temp = fread($fsock, 1024);
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSCP.php
H A DSSH1.php
H A DSSH2.php193 public $fsock;
1222 $this->fsock = $host;
1341 if (!is_resource($this->fsock)) {
1346 $this->fsock = @fsockopen($this->host, $this->port, $errno, $errstr, $this->curTimeout == 0 ? 100000 : $this->curTimeout);
1347 if (!$this->fsock) {
1364 fputs($this->fsock, $this->identifier . "\r\n");
1375 while (!feof($this->fsock) && !preg_match('#(.*)^(SSH-(\d\.\d+).*)#ms', $data, $matches)) {
1382 $read = [$this->fsock];
1394 $temp = stream_get_line($this->fsock, 255, "\n");
1420 if (feof($this->fsock)) {
190 var $fsock; global() variable in phpseclib\\Net\\SSH2
[all...]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP/
H A DStream.php450 return $this->sftp->fsock;
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/System/SSH/
H A DAgent.php83 private $fsock;
133 $this->fsock = fsockopen('unix://' . $address, 0, $errno, $errstr);
134 if (!$this->fsock) {
142 $this->fsock = fopen($address, 'r+b');
143 if (!$this->fsock) {
160 if (!$this->fsock) {
165 if (strlen($packet) != fputs($this->fsock, $packet)) {
193 $identity = (new Identity($this->fsock))
272 if (strlen($this->socket_buffer) != fwrite($this->fsock, $this->socket_buffer)) {
89 var $fsock; global() variable in phpseclib\\System\\SSH\\Agent
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Agent/
H A DIdentity.php71 private $fsock; variable in phpseclib\\System\\SSH\\Agent\\Identity
97 * @param resource $fsock
99 public function __construct($fsock)
101 $this->fsock = $fsock;
277 if (strlen($packet) != fputs($this->fsock, $packet)) {
90 __construct($fsock) global() argument