/plugin/elasticsearch/vendor/nyholm/dsn/src/Configuration/ |
H A D | Url.php | 29 private $port; variable in Nyholm\\Dsn\\Configuration\\Url 39 public function __construct(?string $scheme, string $host, ?int $port = null, ?string $path = null, array $parameters = [], array $authentication = []) argument 42 $this->port = $port; 66 return $this->port; 72 public function withPort(?int $port) argument 75 $new->port = $port; 108 (empty($this->port) ? '' : ':'.$this->port) [all...] |
/plugin/pureldap/vendor/freedsx/socket/src/FreeDSx/Socket/ |
H A D | SocketServer.php | 71 * Create the socket server and bind to a specific port to listen for clients. 74 * @param int|null $port 79 public function listen(string $ip, ?int $port): self 91 if ($transport !== 'unix' && $port === null) { 92 throw new ConnectionException('The port must be set if not using a unix based socket.'); 96 if ($port !== null && $transport !== 'unix') { 97 $uri .= ':' . $port; 175 * Create the socket server. Binds and listens on a specific port 178 * @param int|null $port 185 ?int $port, 56 listen(string $ip, int $port) global() argument 140 bind(string $ip, int $port, array $options = []) global() argument 154 bindTcp(string $ip, int $port, array $options = []) global() argument 168 bindUdp(string $ip, int $port, array $options = []) global() argument [all...] |
/plugin/html2pdf/html2pdf/html2ps/classes/org/active-link/net/ |
H A D | Socket.php | 37 var $port; variable in Socket 45 * @param port 47 function Socket($host, $port) { argument 49 $this->port = $port; 60 $this->connectionID = fsockopen($this->host, $this->port, $errorID, $errorDesc, $connectTimeout); 158 function setPort($port) { argument 159 $this->port = $port;
|
/plugin/mdpage/vendor/cebe/markdown/tests/markdown-data/ |
H A D | links.md | 7 About port info on wiki: [port](http://en.wikipedia.org/wiki/Port_(computer_networking)) 9 About port info on wiki: [port](http://en.wikipedia.org/wiki/Port_(computer_networking) "port wiki") 23 About port info on wiki: [port]( http://en.wikipedia.org/wiki/Port_(computer_networking) ) 25 About port info on wiki: [port]( http://en.wikipedia.org/wiki/Port_(computer_networking) "port wi…
|
/plugin/swiftmail/Swift/Connection/ |
H A D | SMTP.php | 55 protected $port = null; variable in Swift_Connection_SMTP 102 $this->setPort($port); 145 public function setPort($port) argument 147 if ($port == self::AUTO_DETECT) 149 $port = @ini_get("SMTP_PORT"); 151 …if (!$port) $port = ($this->getEncryption() == self::ENC_OFF) ? self::PORT_DEFAULT : self::PORT_SE… 152 $this->port = (int) $port; 160 return $this->port; 278 if ($this->port === null) 283 $this->port = 465; [all …]
|
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/ |
H A D | Uri.php | 52 private $port; variable in GuzzleHttp\\Psr7\\Uri 454 return $this->port; 523 $port = $this->filterPort($port); 525 if ($this->port === $port) { 530 $new->port = $port; 668 * @param int|null $port 676 if ($port === null) { 680 $port = (int) $port; 681 if (0 > $port || 0xffff < $port) { 687 return $port; [all …]
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Monitoring/ |
H A D | TcpCheck.php | 25 public $port; variable in Google\\Service\\Monitoring\\TcpCheck 30 public function setPort($port) argument 32 $this->port = $port; 39 return $this->port;
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudRun/ |
H A D | TCPSocketAction.php | 29 public $port; variable in Google\\Service\\CloudRun\\TCPSocketAction 48 public function setPort($port) argument 50 $this->port = $port; 57 return $this->port;
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Compute/ |
H A D | NamedPort.php | 29 public $port; variable in Google\\Service\\Compute\\NamedPort 48 public function setPort($port) argument 50 $this->port = $port; 57 return $this->port;
|
H A D | GRPCHealthCheck.php | 29 public $port; variable in Google\\Service\\Compute\\GRPCHealthCheck 56 public function setPort($port) argument 58 $this->port = $port; 65 return $this->port;
|
H A D | NetworkEndpoint.php | 41 public $port; variable in Google\\Service\\Compute\\NetworkEndpoint 102 public function setPort($port) argument 104 $this->port = $port; 111 return $this->port;
|
H A D | SSLHealthCheck.php | 25 public $port; variable in Google\\Service\\Compute\\SSLHealthCheck 50 public function setPort($port) argument 52 $this->port = $port; 59 return $this->port;
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudRedis/ |
H A D | Endpoint.php | 29 public $port; variable in Google\\Service\\CloudRedis\\Endpoint 48 public function setPort($port) argument 50 $this->port = $port; 57 return $this->port;
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/TPU/ |
H A D | NetworkEndpoint.php | 29 public $port; variable in Google\\Service\\TPU\\NetworkEndpoint 48 public function setPort($port) argument 50 $this->port = $port; 57 return $this->port;
|
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/SyslogUdp/ |
H A D | UdpSocket.php | 24 protected $port; variable in Monolog\\Handler\\SyslogUdp\\UdpSocket 28 public function __construct(string $ip, int $port = 514) argument 31 $this->port = $port; 35 if ($port === 0) { 63 …throw new \RuntimeException('The UdpSocket to '.$this->ip.':'.$this->port.' has been closed and ca… 65 socket_sendto($this->socket, $chunk, strlen($chunk), $flags = 0, $this->ip, $this->port);
|
/plugin/evesso/phpoauthlib/src/OAuth/Common/Http/Uri/ |
H A D | Uri.php | 35 private $port = 80; variable in OAuth\\Common\\Http\\Uri\\Uri 93 $this->port = $uriParts['port']; 96 $this->port = strcmp('https', $uriParts['scheme']) ? 80 : 443; 181 return $this->port; 220 $authority .= ":{$this->port}"; 235 $authority .= ":{$this->port}"; 372 * @param int $port 374 public function setPort($port) argument 376 $this->port = intval($port); 378 …if (('https' === $this->scheme && $this->port === 443) || ('http' === $this->scheme && $this->port…
|
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/Common/Http/Uri/ |
H A D | Uri.php | 35 private $port = 80; variable in OAuth\\Common\\Http\\Uri\\Uri 92 if (isset($uriParts['port'])) { 93 $this->port = $uriParts['port']; 96 $this->port = strcmp('https', $uriParts['scheme']) ? 80 : 443; 181 return $this->port; 220 $authority .= ":{$this->port}"; 235 $authority .= ":{$this->port}"; 372 * @param int $port 374 public function setPort($port) argument [all...] |
/plugin/patchpanel/ |
H A D | syntax.php | 105 function ethernet_svg($row, $position, $port, $item, $opt, $imagewidth, $imageheight) { argument 118 $fullcaption = "<div class=\'title\'>" . $opt['name'] . " Port $port</div>"; 170 $image = str_replace("#REPLACEPORTNUMBER#", $port, $image); 275 $port=$startPortOdd; 277 $port=$startPortEven; 280 …$renderer->doc .= $this->ethernet_svg($row, $position, $port, $items[$port], $opt, $imagewidth, $i… 281 $port=$port+2; 300 for ($port=$startPort; $port <= $endPort ; $port++) { 301 $position = $port - $portsPerRow*($row-1); 302 …$renderer->doc .= $this->ethernet_svg($row, $position, $port, $items[$port], $opt, $imagewidth, $i…
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/AndroidManagement/ |
H A D | ProxyInfo.php | 38 public $port; variable in Google\\Service\\AndroidManagement\\ProxyInfo 85 public function setPort($port) argument 87 $this->port = $port; 94 return $this->port;
|
/plugin/authfacebook/lib/Url/ |
H A D | FacebookUrlDetectionHandler.php | 114 $port = $this->getCurrentPort(); 115 $appendPort = ':' . $port; 118 if (($scheme == 'http' && $port == '80') || ($scheme == 'https' && $port == '443')) { 128 $port = $this->getHeader('X_FORWARDED_PORT'); 129 if ($port) { 130 return (string)$port;
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceControl/ |
H A D | Peer.php | 33 public $port; variable in Google\\Service\\ServiceControl\\Peer 74 public function setPort($port) argument 76 $this->port = $port; 83 return $this->port;
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Datastream/ |
H A D | ForwardSshTunnelConnectivity.php | 33 public $port; variable in Google\\Service\\Datastream\\ForwardSshTunnelConnectivity 74 public function setPort($port) argument 76 $this->port = $port; 83 return $this->port;
|
H A D | MysqlProfile.php | 33 public $port; variable in Google\\Service\\Datastream\\MysqlProfile 72 public function setPort($port) argument 74 $this->port = $port; 81 return $this->port;
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceDirectory/ |
H A D | Endpoint.php | 41 public $port; variable in Google\\Service\\ServiceDirectory\\Endpoint 102 public function setPort($port) argument 104 $this->port = $port; 111 return $this->port;
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Gmail/ |
H A D | SmtpMsa.php | 33 public $port; variable in Google\\Service\\Gmail\\SmtpMsa 74 public function setPort($port) argument 76 $this->port = $port; 83 return $this->port;
|