Home
last modified time | relevance | path

Searched refs:host (Results 301 – 325 of 413) sorted by path

1...<<11121314151617

/plugin/groupmail/
H A Drecaptchalib.php61 * @param string $host
67 function _recaptcha_http_post($host, $path, $data, $port = 80) { argument
72 $http_request .= "Host: $host\r\n";
80 if( false == ( $fs = @fsockopen($host, $port, $errno, $errstr, 10) ) ) {
/plugin/html2pdf/html2pdf/html2ps/classes/org/active-link/net/
H A DHTTPClient.php61 function HTTPClient($host, $port = 80) { argument
62 $this->Socket($host, $port);
94 $headers .= "Host: " . $this->host . "\r\n";
H A DSocket.php36 var $host; variable in Socket
44 * @param host
47 function Socket($host, $port) { argument
48 $this->host = $host;
60 $this->connectionID = fsockopen($this->host, $this->port, $errorID, $errorDesc, $connectTimeout);
148 function setHost($host) { argument
149 $this->host = $host;
/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/html2pdf/html2pdf/html2ps/
H A Dfetcher.url.class.php14 var $host; variable in FetcherUrl
135 $this->host,
157 $this->host,
164 $fp = @fsockopen("ssl://$this->host", $this->port, $errno, $errstr, 5);
168 $this->host,
201 return $this->protocol."://".$this->host.$location;
204 return $this->protocol."://".$this->host.$this->path.$location;
239 $this->host = 'localhost';
260 $this->host = "";
325 $header .= "Host: ".$this->host."\r\n";
[all …]
H A Dindex.php3 $host = $_SERVER['HTTP_HOST']; variable
/plugin/html5video2/script/
H A Dvideo.min.js12host=n.host.replace(/:80$/,"")),"https:"===n.protocol&&(n.host=n.host.replace(/:443$/,"")),n.proto…
/plugin/icalevents/vendor/sabre/uri/tests/
H A DParseTest.php49 'host' => 'example.org',
75 'host' => 'ftp.example.org',
90 'host' => 'example.org',
102 'host' => null,
166 'host' => 'example.org',
/plugin/indexmenu/
H A Dadmin.php
/plugin/iptrust/
H A Daction.php63 list($login, $host, $date) = explode("\t", $logins[$i]);
64 if ($ip == $host) {
/plugin/iptrust2/
H A Daction.php78 list($login, $host, $date) = explode("\t", $logins[$i]);
79 if ($ip == $host) {
/plugin/issuetracker/
H A Dsyntax.php1568 function checkdnsrr($host, $type='') argument
1570 if(!empty($host))
1573 exec('nslookup -type='.$type.' '.escapeshellcmd($host), $result);
1575 … foreach(new RegexIterator($it, '~^'.$host.'~', RegexIterator::GET_MATCH) as $result)
/plugin/jcapture/lib/
H A Dhttpclient-4.0.1.jarMETA-INF/MANIFEST.MF META-INF/HAMMURAP.SF META-INF/HAMMURAP ...
H A Djcapture.jarMETA-INF/MANIFEST.MF META-INF/HAMMURAP.SF META-INF/HAMMURAP ...
/plugin/jcapture/src/com/hammurapi/jcapture/
H A DJCaptureApplet.java18 String host = getParameter("host"); in createRequest() local
19 String dokuHost = host; in createRequest()
34 if (dokuBase.startsWith(host)) { in createRequest()
35 dokuBase = dokuBase.substring(host.length()); in createRequest()
/plugin/jdraw/lib/
H A Dhttpclient-4.0.1.jarMETA-INF/MANIFEST.MF META-INF/HAMMURAP.SF META-INF/HAMMURAP ...
/plugin/jdraw/src/com/mxgraph/examples/swing/editor/
H A DBasicGraphEditor.java.bak940 return applet.getParameter("host");
/plugin/jirainfo/src/
H A Dpopper.min.js4host}function n(e){if(!e)return document.body;switch(e.nodeName){case'HTML':case'BODY':return e.ow…
/plugin/jmol2/jmol/
H A DCHANGES.txt5172 # can either be to host page JavaScript functions or to Jmol scripts. This
/plugin/jplayer/vendor/happyworm/jplayer/src/actionscript/happyworm/jPlayer/
H A DJplayerRtmp.as421 …/* Dont close the stream or netconnection here anymore so we can recycle if host/appname are the s…
485 var host:String = rtmpSrc.substr(startIndex);
487 host = host.substr(0,host.indexOf("/"));
488 var endHost:Number = startIndex + host.length + 1;
490 // See if there is a host port specified
491 if(host.indexOf(":") != -1) {
492 port = host.substr(host.indexOf(":")+1);
493 host = host.substr(0,host.indexOf(":"));
558 trace(("\n\n*** HOST: " + host));
567 streamParts.hostName = host;
/plugin/jplayer/vendor/james-heinrich/getid3/getid3/
H A Dextension.cache.mysql.php95 * @param string $host
104 public function __construct($host, $database, $username, $password, $table='getid3_cache') { argument
112 $this->connection = mysql_pconnect($host, $username, $password);
H A Dextension.cache.mysqli.php99 * @param string $host
108 public function __construct($host, $database, $username, $password, $table='getid3_cache') { argument
116 $this->mysqli = new mysqli($host, $username, $password);
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Asset/
H A DHttpAsset.php49 list($host, $path) = explode('/', $url, 2);
51 parent::__construct($filters, $scheme.'://'.$host, $path, $vars);
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Filter/
H A DCssRewriteFilter.php40 list($host, $path) = explode('/', $url, 2);
42 $host = $scheme.'://'.$host.'/';
47 $host = '';
70 … $content = $this->filterReferences($asset->getContent(), function ($matches) use ($host, $path) {
78 return str_replace($matches['url'], $host.$matches['url'], $matches[0]);
89 foreach (explode('/', $host.$path.$url) as $part) {
/plugin/jquery/
H A Djquery-1.4.2.js5058 remote = parts && (parts[1] && parts[1] !== location.protocol || parts[2] !== location.host);

1...<<11121314151617