Home
last modified time | relevance | path

Searched refs:port (Results 51 – 75 of 226) sorted by relevance

12345678910

/plugin/snap/
H A Dserver.sh21 for port in $ports; do
24 echo "`date` - Listening on port $port";
25 nc -l -r -p$port -e $base/snap.sh
/plugin/qstat/
H A Dsyntax.php314 function _getStatus($host, $port) { argument
316 return $this->_proxy($host, $port);
318 return array_merge($this->_infos($host, $port), $this->_status($host, $port));
322 function _proxy($host, $port) { argument
324 $str = file_get_contents("$proxy?host=$host&port=$port");
333 function _infos($host, $port) { argument
336 $sock = @stream_socket_client("udp://$host:$port");
363 function _status($host, $port) { argument
366 $sock = @stream_socket_client("udp://$host:$port");
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/
H A DLdapUrl.php51 protected $port;
125 * @param int|null $port
128 public function setPort(?int $port)
130 $this->port = $port;
140 return $this->port;
263 if ($this->host !== null && $this->port !== null) {
264 $url .= ':' . $this->port;
292 $url->setPort($pieces['port'] ?? null);
37 protected $port; global() variable in FreeDSx\\Ldap\\LdapUrl
114 setPort(int $port) global() argument
/plugin/authgooglesheets/vendor/google/apiclient-services/src/TPU/
H A DNode.php72 public $port; variable in Google\\Service\\TPU\\Node
265 public function setPort($port) argument
267 $this->port = $port;
274 return $this->port;
/plugin/html2pdf/html2pdf/html2ps/
H A Dfetcher.url.class.php15 var $port; variable in FetcherUrl
105 $this->port = 80;
131 $fp = @fsockopen($this->host,$this->port,$errno,$errstr,HTML2PS_CONNECTION_TIMEOUT);
136 $this->port,
158 $this->port);
164 $fp = @fsockopen("ssl://$this->host", $this->port, $errno, $errstr, 5);
169 $this->port,
242 $this->port = 80;
250 if (isset($parts['port'])) { $this->port = $parts['port']; };
284 $this->port = 443;
/plugin/revealjs/plugin/notes-server/
H A Dindex.js14 port : 1947, property in opts
58 server.listen( opts.port || null );
64 var slidesLocation = 'http://localhost' + ( opts.port ? ( ':' + opts.port ) : '' );
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Connections/
H A DConnection.php77 protected $port; variable in Elasticsearch\\Connections\\Connection
138 if (isset($hostDetails['port']) !== true) {
139 $hostDetails['port'] = 9200;
156 $connectionParams['client']['curl'][CURLOPT_PORT] = $hostDetails['port'];
182 $port = $hostDetails['port'];
186 $this->port = $port;
217 $host .= ':' . $this->port;
397 $port
637 addPortInUrl(string $uri, int $port) global() argument
[all...]
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DCubeHandler.php34 private $port; variable in Monolog\\Handler\\CubeHandler
62 $this->port = (int) $urlInfo['port'];
85 if (!socket_connect($this->udpConnection, $this->host, $this->port)) {
86 …throw new \LogicException('Unable to connect to the socket at ' . $this->host . ':' . $this->port);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/DataprocMetastore/
H A DService.php65 public $port; variable in Google\\Service\\DataprocMetastore\\Service
276 public function setPort($port) argument
278 $this->port = $port;
285 return $this->port;
/plugin/smtp/subtree/txtthinking/Mailer/src/Mailer/
H A DSMTP.php42 protected $port; variable in Tx\\Mailer\\SMTP
100 * @param int $port port
104 public function setServer($host, $port, $secure=null) argument
107 $this->port = $port;
172 $this->logger && $this->logger->debug("Connecting to {$this->host} at {$this->port}");
174 $this->smtp = @fsockopen($host, $this->port);
/plugin/recaptcha2/lib/ReCaptcha/RequestMethod/
H A DSocket.php42 * @param int $port
48 public function fsockopen($hostname, $port = -1, &$errno = 0, &$errstr = '', $timeout = null) argument
50 …$this->handle = fsockopen($hostname, $port, $errno, $errstr, (is_null($timeout) ? ini_get("default…
/plugin/gemini/
H A Dcli.php53 $port = $options->getOpt('port', '1965');
58 $this->serve($interface, $port, $pemfile);
65 * @param int $port Port to use
69 protected function serve($interface, $port, $certfile) argument
88 'tcp://' . $interface . ':' . $port,
100 $_SERVER['SERVER_PORT'] = $port;
/plugin/authucenter/lib/uc_client/model/
H A Dmisc.php70 $port = !empty($matches['port']) ? $matches['port'] : 80;
79 $header .= "Host: $host:$port\r\n";
90 $header .= "Host: $host:$port\r\n";
97 if(!$fp = @fsocketopen(($ip ? $ip : $host), $port, $errno, $errstr, $timeout)) {
107 $fp = @fopen($scheme.'://'.($ip ? $ip : $host).':'.$port.$path, 'b', false, $context);
/plugin/eventum/XML/
H A DRPC.php724 function XML_RPC_Client($path, $server, $port = 0, argument
734 if ($port == 443) {
737 $this->port = 443;
740 if ($port) {
741 $this->port = $port;
752 if ($port) {
753 $this->port = $port;
755 $this->port = 443;
934 $fp = @fsockopen($protocol . $server, $port,
954 . $server . ':' . $port
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudRedis/
H A DInstance.php86 public $port; variable in Google\\Service\\CloudRedis\\Instance
379 public function setPort($port) argument
381 $this->port = $port;
388 return $this->port;
/plugin/authnc/lang/en/
H A Dsettings.php9 $lang['port'] = 'Nextcloud port (e.g. 443)';
/plugin/evesso/phpoauthlib/src/OAuth/Common/Http/Uri/
H A DUriFactoryInterface.php34 * @param string $port
41 …public function createFromParts($scheme, $userInfo, $host, $port, $path = '', $query = '', $fragme… argument
H A DUriInterface.php33 * @param int $port
35 public function setPort($port); argument
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/Common/Http/Uri/
H A DUriFactoryInterface.php34 * @param string $port
41 public function createFromParts($scheme, $userInfo, $host, $port, $path = '', $query = '', $fragment = ''); argument
H A DUriInterface.php33 * @param int $port
35 public function setPort($port); argument
/plugin/authgoogle/google/cache/
H A DGoogle_MemcacheCache.php35 $this->port = $apiConfig['ioMemCacheCache_port'];
36 if (empty($this->host) || empty($this->port)) {
81 if (! $this->connection = @memcache_pconnect($this->host, $this->port)) {
/plugin/revealjs/plugin/multiplex/
H A Dindex.js14 port: process.env.PORT || 1948, property in opts
58 server.listen( opts.port || null );
64 console.log( brown + "reveal.js:" + reset + " Multiplex running on port " + green + opts.port + res…
/plugin/smtp/subtree/txtthinking/Mailer/src/
H A DMailer.php56 * @param int $port port
60 public function setServer($host, $port, $secure=null){ argument
61 $this->smtp->setServer($host, $port, $secure);
/plugin/authgooglesheets/vendor/psr/http-message/src/
H A DUriInterface.php235 * @param null|int $port The port to use with the new instance; a null value
240 public function withPort($port); argument
/plugin/sphinxsearch/
H A DINSTALL19 By default plugin is using 9312 as the searchd port, so make sure this
20 port is free (if you have sphinx on other port, see #5).

12345678910