Searched refs:errno (Results 1 – 7 of 7) sorted by relevance
| /dokuwiki/inc/ |
| H A D | ErrorHandler.php | 146 * @param int $errno 152 public static function errorHandler($errno, $errstr, $errfile, $errline) argument 157 if (!(error_reporting() & $errno)) return false; 162 $errno,
|
| /dokuwiki/vendor/kissifrot/php-ixr/src/Client/ |
| H A D | Client.php | 95 $fp = fsockopen($this->server, $this->port, $errno, $errstr, $this->timeout); 101 $fp = fsockopen($this->server, $this->port, $errno, $errstr);
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/System/SSH/ |
| H A D | Agent.php | 134 $this->fsock = fsockopen('unix://' . $address, 0, $errno, $errstr); 136 … throw new \RuntimeException("Unable to connect to ssh-agent (Error $errno: $errstr)");
|
| /dokuwiki/lib/plugins/authad/adLDAP/ |
| H A D | adLDAP.php | 927 fsockopen($host, $port, $errno, $errstr, 10); 928 if ($errno > 0) {
|
| /dokuwiki/vendor/simplepie/simplepie/src/ |
| H A D | File.php | 154 $fp = @fsockopen($socket_host, $url_parts['port'], $errno, $errstr, $timeout);
|
| /dokuwiki/inc/HTTP/ |
| H A D | HTTPClient.php | 257 $socket = @fsockopen($server, $port, $errno, $errstr, $this->timeout); 260 $this->error = "Could not connect to $server:$port\n$errstr ($errno)";
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/ |
| H A D | SSH2.php | 1402 …$this->fsock = @fsockopen($this->host, $this->port, $errno, $errstr, $this->curTimeout == 0 ? 1000… 1405 … throw new UnableToConnectException(rtrim("Cannot connect to $host. Error $errno. $errstr"));
|