Home
last modified time | relevance | path

Searched refs:port (Results 76 – 100 of 226) sorted by relevance

12345678910

/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DSyslogUdpHandler.php47 * @param int $port Port number, or 0 if $host is a unix socket
56 …public function __construct(string $host, int $port = 514, $facility = LOG_USER, $level = Logger::… argument
67 $this->socket = new UdpSocket($host, $port);
/plugin/elwikiupgrade/
H A DHTTPClient.php195 if(!empty($uri['port'])) $port = $uri['port'];
203 $port = $this->proxy_port;
204 if (empty($port)) $port = 8080;
208 if (!isset($port)) $port = ($uri['scheme'] == 'https') ? 443 : 80;
260 $connectionId = $this->_uniqueConnectionId($server,$port);
270 $socket = @fsockopen($server,$port,$errno, $errstr, $this->timeout);
273 $this->error = "Could not connect to $server:$port\n$errstr ($errno)";
865 * @param string $port
868 function _uniqueConnectionId($server, $port) { argument
869 return "$server:$port";
/plugin/findologicxmlexport/vendor/hoa/stream/Test/Integration/
H A DStream.php59 $port = mt_rand(10000, 12000),
63 $port,
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Compute/
H A DBackendService.php110 public $port; variable in Google\\Service\\Compute\\BackendService
525 public function setPort($port) argument
527 $this->port = $port;
534 return $this->port;
/plugin/patchpanel/
H A DREADME.md8 added option to use with 3com style switches that have port 2 above port 1
/plugin/combo/vendor/php-webdriver/webdriver/lib/Remote/Service/
H A DDriverService.php43 * @param int $port The given port the service should use.
47 public function __construct($executable, $port, $args = [], $environment = null) argument
50 $this->url = sprintf('http://localhost:%d', $port);
/plugin/fedauth/Auth/
H A DOpenID.php364 * @param string $port The port.
371 static function urlunparse($scheme, $host, $port = null, $path = '/', argument
389 if ($port) {
390 $result .= ":" . $port;
/plugin/openid/Auth/
H A DOpenID.php380 * @param string $port The port.
387 static function urlunparse($scheme, $host, $port = null, $path = '/', argument
405 if ($port) {
406 $result .= ":" . $port;
/plugin/upgrade/HTTP/
H A DHTTPClient.php186 $uriPort = !empty($uri['port']) ? $uri['port'] : null;
195 $port = $this->proxy_port;
196 if (empty($port)) $port = 8080;
200 $port = $uriPort ?: ($uri['scheme'] == 'https' ? 443 : 80);
252 $connectionId = $this->uniqueConnectionId($server,$port);
262 $socket = @fsockopen($server,$port,$errno, $errstr, $this->timeout);
265 $this->error = "Could not connect to $server:$port\n$errstr ($errno)";
522 if(empty($requestinfo['port']))
878 uniqueConnectionId($server, $port) global() argument
[all...]
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DConnection.php16 * Default elastic search port.
55 * @param array $params OPTIONAL Connection params: host, port, transport, timeout. All are optional
69 * @return int Server port
73 return $this->hasParam('port') ? $this->getParam('port') : self::DEFAULT_PORT;
77 * @param int $port
81 public function setPort($port) argument
83 return $this->setParam('port', (int) $port);
/plugin/dw2pdf/vendor/mpdf/mpdf/src/
H A DRemoteContentFetcher.php100 $port = Arrays::get($p, 'port', 80);
105 $port = Arrays::get($p, 'port', 443);
113 if (!($fh = @fsockopen($prefix . $p['host'], $port, $errno, $errstr, $timeout))) {
/plugin/html2pdf/html2pdf/html2ps/classes/org/active-link/xml/
H A DXMLRPCClient.php56 function XMLRPCClient($host, $port = 80) { argument
57 $this->HTTPClient($host, $port);
/plugin/combo/ComboStrap/Web/
H A DUrl.php84 private ?int $port = null;
127 $port = $urlComponents["port"] ?? null;
129 if ($port !== null) {
130 $this->port = DataType::toInteger($port);
133 throw new ExceptionBadArgument("The port ($port) in ($url) is not an integer. Error: {$e->getMessage()}");
813 // no port
882 if ($this->port
87 private ?int $port = null; global() variable in ComboStrap\\Web\\Url
[all...]
/plugin/fedauth/
H A Dcommon.php98 $port = ($_SERVER['SERVER_PORT'] == $defp) ? '' : (':'.$_SERVER['SERVER_PORT']);
99 return $protocol . '://' . $_SERVER['SERVER_NAME'] . $port . $_SERVER['REQUEST_URI'];
/plugin/swiftmail/Swift/Authenticator/
H A D@PopB4Smtp.php30 public function __construct($conn=null, $port=110, $encryption=0) argument
36 … $this->connection = new Swift_Authenticator_PopB4Smtp_Pop3Connection($conn, $port, $encryption);
/plugin/authfacebook/lib/Url/
H A DFacebookUrlManipulator.php62 $port = isset($parts['port']) ? ':' . $parts['port'] : '';
66 return $scheme . $host . $port . $path . $query . $fragment;
/plugin/html2pdf/html2pdf/html2ps/classes/org/active-link/net/
H A DHTTPClient.php61 function HTTPClient($host, $port = 80) { argument
62 $this->Socket($host, $port);
/plugin/authwordpress/
H A Dauth.php259 $port = $this->getConf('port');
260 if ($port) {
261 $dsn[] = 'port=' . $port;
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dhttp-meta-data.asciidoc29 ==== Include port number in Host header
31 This is a special setting for the client that enables the port in the
35 By default the port number is not included in the Host header.
/plugin/mantis/lib/
H A Dclass.soap_transport_http.php22 var $port = ''; variable in soap_transport_http
134 $this->port = 443;
136 $this->port = 80;
147 $this->setHeader('Host', $this->host.':'.$this->port);
190 …ut, response_timeout $response_timeout, scheme $this->scheme, host $this->host, port $this->port");
194 $port = $this->port;
197 $port = $this->proxy['port'];
218 $this->fp = @fsockopen( $host, $this->port, $this->errno, $this->error_str, $connection_timeout);
220 $this->fp = @fsockopen( $host, $this->port, $this->errno, $this->error_str);
278 …$hostURL = ($this->port != '') ? "$this->scheme://$this->host:$this->port" : "$this->scheme://$thi…
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DRequest.php131 if (($port = $this->uri->getPort()) !== null) {
132 $host .= ':' . $port;
H A DServerRequest.php196 $port = isset($parts['port']) ? $parts['port'] : null;
/plugin/autotweet/
H A DOAuth.php383 $port = @$parts['port'];
388 $port or $port = ($scheme == 'https') ? '443' : '80';
390 if (($scheme == 'https' && $port != '443')
391 || ($scheme == 'http' && $port != '80')) {
392 $host = "$host:$port";
/plugin/authnc/conf/
H A Ddefault.php9 $conf['port'] = '443';
/plugin/authnc/lang/de/
H A Dsettings.php9 $lang['port'] = 'Nextcloud Port (z.B. 443)';

12345678910