Home
last modified time | relevance | path

Searched refs:errno (Results 1 – 25 of 78) sorted by last modified time

1234

/plugin/linkback/
H A Dhttp.php112 $socket = @ fsockopen($server, $port, $errno, $errstr, $this->timeout);
115 $this->error = "Could not connect to $server:$port\n$errstr ($errno)";
/plugin/photogallery/phpThumb/
H A Dphpthumb.functions.php548 if ($fp = @fsockopen($parsed_url['host'], $parsed_url['port'], $errno, $errstr, $timeout)) {
569 if ($fp = @fsockopen($parsed_url['host'], $parsed_url['port'], $errno, $errstr, $timeout)) {
656 …if ($fp = @fsockopen((($port == 443) ? 'ssl://' : '').$host, $port, $errno, $errstr, $timeout)) { …
674 list( , $errno, $errstr) = $matches;
675 $errno = (int) $errno;
682 switch ($errno) {
688 … $errstr = $errno.' '.$errstr.($header_newlocation ? '; Location: '.$header_newlocation : '');
/plugin/dw2pdf/vendor/mpdf/mpdf/src/
H A DRemoteContentFetcher.php113 if (!($fh = @fsockopen($prefix . $p['host'], $port, $errno, $errstr, $timeout))) {
114 $this->logger->error(sprintf('Socket error "%s": "%s"', $errno, $errstr), ['context' => LogContext::REMOTE_CONTENT]);
/plugin/combo/ComboStrap/
H A DHttp.php123 $fp = fsockopen($parts['host'], isset($parts['port']) ? $parts['port'] : 80, $errno, $errstr, 30);
/plugin/upgrade/HTTP/
H A DHTTPClient.php262 $socket = @fsockopen($server,$port,$errno, $errstr, $this->timeout);
265 $this->error = "Could not connect to $server:$port\n$errstr ($errno)";
/plugin/openid/Auth/Yadis/
H A DPlainHTTPFetcher.php97 $errno = 0;
106 @$sock = fsockopen($host, $parts['port'], $errno, $errstr,
207 $errno = 0;
210 $sock = fsockopen($parts['host'], $parts['port'], $errno, $errstr,
/plugin/fastwiki/
H A Daction.php326 $remote = fsockopen($hostname, 80, $errno, $errstr, 5);
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dper-request-configuration.asciidoc217 [errno] => 0
H A Dbreaking-changes.asciidoc20 set_error_handler(function ($errno, $errstr) {
/plugin/elasticsearch/vendor/ezimuel/ringphp/src/Client/
H A DCurlFactory.php90 return !empty($response['curl']['errno']) || !isset($response['status'])
110 && (empty($response['curl']['errno'])
111 || $response['curl']['errno'] == 65)
119 $response['curl']['errno'],
124 $error = isset($response['curl']['errno'])
125 && isset($connectionErrors[$response['curl']['errno']])
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md683 - `\Elastica\JSON` throws exception with readable message instead of errno
/plugin/davcal/
H A Dcalendarserver.php37 function exception_error_handler($errno, $errstr, $errfile, $errline) { argument
39 throw new ErrorException($errstr, 0, $errno, $errfile, $errline);
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DRotatingFileHandler.php162 … set_error_handler(function (int $errno, string $errstr, string $errfile, int $errline): bool {
H A DSocketHandler.php44 private $errno = null; variable in Monolog\\Handler\\SocketHandler
250 …return @pfsockopen($this->connectionString, -1, $this->errno, $this->errstr, $this->connectionTime…
260 …return @fsockopen($this->connectionString, -1, $this->errno, $this->errstr, $this->connectionTimeo…
376 …pectedValueException("Failed connecting to $this->connectionString ($this->errno: $this->errstr)");
/plugin/authgooglesheets/vendor/firebase/php-jwt/src/
H A DJWT.php342 if ($errno = \json_last_error()) {
343 self::handleJsonError($errno);
367 if ($errno = \json_last_error()) {
368 self::handleJsonError($errno);
470 * @param int $errno An error number from json_last_error()
476 private static function handleJsonError(int $errno): void argument
486 isset($messages[$errno])
487 ? $messages[$errno]
488 : 'Unknown JSON error: ' . $errno
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/Handler/
H A DCurlHandler.php41 $easy->errno = curl_errno($easy->handle);
H A DCurlMultiHandler.php196 $entry['easy']->errno = $done['result'];
H A DCurlFactory.php104 if (!$easy->response || $easy->errno) {
128 $easy->errno,
141 'errno' => $easy->errno,
150 && (!$easy->errno || $easy->errno == 65)
191 $ctx['errno'],
199 $error = isset($connectionErrors[$easy->errno])
H A DEasyHandle.php35 public $errno = 0; variable in GuzzleHttp\\Handler\\EasyHandle
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/System/SSH/
H A DAgent.php148 $this->fsock = fsockopen('unix://' . $address, 0, $errno, $errstr);
150 throw new \RuntimeException("Unable to connect to ssh-agent (Error $errno: $errstr)");
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH2.php1404 …$this->fsock = @fsockopen($this->host, $this->port, $errno, $errstr, $this->curTimeout == 0 ? 1000…
1407 … throw new UnableToConnectException(rtrim("Cannot connect to $host. Error $errno. $errstr"));
/plugin/gemini/
H A Dcli.php85 $errno = 0;
89 $errno,
94 if ($socket === false) throw new \splitbrain\phpcli\Exception($errstr, $errno);
/plugin/quickstats/GEOIP/vendor/maxmind/web-service-common/src/WebService/
H A DClient.php213 $errno = json_last_error();
214 switch ($errno) {
226 return "Other JSON error ($errno).";
/plugin/quickstats/GEOIP/vendor/maxmind/web-service-common/src/WebService/Http/
H A DCurlRequest.php94 if ($errno = curl_errno($curl)) {
98 "cURL error ({$errno}): {$errorMessage}",
/plugin/diagramsnet/lib/js/dropbox/
H A DDropbox-sdk.min.js9 …d){var n=new Error(e+t+"ms exceeded");n.timeout=t,n.code="ECONNABORTED",n.errno=r,this.timedout=!0…

1234