Home
last modified time | relevance | path

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

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/System/SSH/
H A DAgent.php84 private $fsock; variable in phpseclib3\\System\\SSH\\Agent
134 $this->fsock = fsockopen('unix://' . $address, 0, $errno, $errstr);
135 if (!$this->fsock) {
143 $this->fsock = fopen($address, 'r+b');
144 if (!$this->fsock) {
161 if (!$this->fsock) {
166 if (strlen($packet) != fputs($this->fsock, $packet)) {
194 $identity = (new Identity($this->fsock))
292 if (strlen($this->socket_buffer) != fwrite($this->fsock, $this->socket_buffer)) {
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Agent/
H A DIdentity.php71 private $fsock; variable in phpseclib3\\System\\SSH\\Agent\\Identity
104 * @param resource $fsock
106 public function __construct($fsock) argument
108 $this->fsock = $fsock;
283 if (strlen($packet) != fputs($this->fsock, $packet)) {
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Common/Traits/
H A DReadBytes.php31 $temp = fread($this->fsock, $length);
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH2.php199 public $fsock; variable in phpseclib3\\Net\\SSH2
1280 $this->fsock = $host;
1397 if (!is_resource($this->fsock)) {
1402 …$this->fsock = @fsockopen($this->host, $this->port, $errno, $errstr, $this->curTimeout == 0 ? 1000…
1403 if (!$this->fsock) {
1425 fputs($this->fsock, $this->identifier . "\r\n");
1441 while (!feof($this->fsock) && !preg_match('#(.*)^(SSH-(\d\.\d+).*)#ms', $data, $matches)) {
1448 $read = [$this->fsock];
1461 $temp = stream_get_line($this->fsock, 255, "\n");
1483 if (feof($this->fsock)) {
[all …]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
H A DX509.php1128 $fsock = @fsockopen($parts['host'], isset($parts['port']) ? $parts['port'] : 80);
1129 if (!$fsock) {
1136 fputs($fsock, "GET $path HTTP/1.0\r\n");
1137 fputs($fsock, "Host: $parts[host]\r\n\r\n");
1138 $line = fgets($fsock, 1024);
1148 while (!feof($fsock) && fgets($fsock, 1024) != "\r\n") {
1151 while (!feof($fsock)) {
1152 $temp = fread($fsock, 1024);
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP/
H A DStream.php450 return $this->sftp->fsock;