Home
last modified time | relevance | path

Searched refs:host (Results 51 – 75 of 577) sorted by path

12345678910>>...24

/PHP-5.5/ext/curl/tests/
H A Dcurl_setopt_basic004.phpt12 $host = curl_cli_server_start();
17 $url = "{$host}/";
H A Dcurl_writeheader_callback.phpt7 Hit the host and determine that the headers are sent to the callback specified for CURLOPT_HEADERFU…
20 $host = curl_cli_server_start();
25 curl_setopt($ch, CURLOPT_URL, $host);
/PHP-5.5/ext/fileinfo/tests/
H A Dmagic1619 # They were written with binary values in host byte order, and
1620 # the magic number was a host "int", which might have been 16 bits
4660 # Btree 1.85/1.86 databases store the metadata in host byte order.
4661 # Hash and Btree 2.X and later databases store the metadata in host byte order.
7967 # All new-style FreeBSD magic numbers are in host byte order (i.e.,
10824 >0 regex dey\n[0-9][0-9][0-9]\0 Dalvik dex file (optimized for host)
15944 >24 string >\0 host: %s
16133 # differing from the natural host format, this could be written more
18398 >8 short 7957 GroupWise admin host database
18399 >8 short 7959 GroupWise admin remote host database
/PHP-5.5/ext/filter/docs/
H A Dfilter.txt150 * HOST_REQUIRED: The 'host' part of the URL
/PHP-5.5/ext/filter/
H A Dlogical_filters.c469 if (url->host == NULL) { in php_filter_validate_url()
473 e = url->host + strlen(url->host); in php_filter_validate_url()
474 s = url->host; in php_filter_validate_url()
492 …(url->host == NULL && (strcmp(url->scheme, "mailto") && strcmp(url->scheme, "news") && strcmp(url-… in php_filter_validate_url()
/PHP-5.5/ext/ftp/
H A Dftp.c124 ftp_open(const char *host, short port, long timeout_sec TSRMLS_DC) in ftp_open() argument
137 ftp->fd = php_network_connect_socket_to_host(host, in ftp_open()
H A Dftp.h96 ftpbuf_t* ftp_open(const char *host, short port, long timeout_sec TSRMLS_DC);
H A Dphp_ftp.c49 ZEND_ARG_INFO(0, host)
56 ZEND_ARG_INFO(0, host)
345 char *host; in PHP_FUNCTION() local
350 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|ll", &host, &host_len, &port, &timeout_sec… in PHP_FUNCTION()
360 if (!(ftp = ftp_open(host, (short)port, timeout_sec TSRMLS_CC))) { in PHP_FUNCTION()
381 char *host; in PHP_FUNCTION() local
386 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|ll", &host, &host_len, &port, &timeout_sec… in PHP_FUNCTION()
396 if (!(ftp = ftp_open(host, (short)port, timeout_sec TSRMLS_CC))) { in PHP_FUNCTION()
/PHP-5.5/ext/ftp/tests/
H A Dserver.inc219 $host = "$m[1].$m[2].$m[3].$m[4]";
228 if (!$fs = stream_socket_client("tcp://$host:$port")) {
281 if (!$fs = stream_socket_client("tcp://$host:$port")) {
325 else if (!$fs = stream_socket_client("tcp://$host:$port")) {
390 $host = "127.0.0.1";
/PHP-5.5/ext/imap/
H A Dphp_imap.c335 ZEND_ARG_INFO(0, host)
2600 char *mailbox, *host, *personal; in PHP_FUNCTION() local
2615 if (host) { in PHP_FUNCTION()
2616 addr->host = cpystr(host); in PHP_FUNCTION()
2667 if (addresstmp->host) { in PHP_FUNCTION()
3927 if (addr->host == NULL || strcmp(addr->host, ERRHOST) == 0) { in _php_imap_mail()
3933 bt_len += strlen(addr->host); in _php_imap_mail()
3956 if (addr->host == NULL || strcmp(addr->host, ERRHOST) == 0) { in _php_imap_mail()
3962 bt_len += strlen(addr->host); in _php_imap_mail()
3982 if (addr->host == NULL || strcmp(addr->host, ERRHOST) == 0) { in _php_imap_mail()
[all …]
/PHP-5.5/ext/imap/tests/
H A Dbug31142_2.phpt11 $envelope["from"]= 'host@domain.com';
12 $envelope["return_path"]= 'host@domain.com';
25 From: host@domain.com
H A Dbug46918.phpt2 Bug #46918 (imap_rfc822_parse_adrlist host part not filled in correctly)
29 'host' => 'example.ac.uk',
35 'host' => 'example.ac.uk',
40 'host' => 'example.com',
45 'host' => 'example.ac.uk',
51 'host' => 'example.ac.uk',
57 'host' => '#',
62 'host' => '-example.com',
67 'host' => 'one',
72 'host' => '.SYNTAX-ERROR.',
/PHP-5.5/ext/interbase/
H A Dibase_service.c213 char buf[128], *host, *user, *pass, *loc; in PHP_FUNCTION() local
219 &host, &hlen, &user, &ulen, &pass, &plen)) { in PHP_FUNCTION()
227 user, isc_spb_password, (char)plen, pass, host); in PHP_FUNCTION()
245 svm->hostname = estrdup(host); in PHP_FUNCTION()
H A Dinterbase.c258 ZEND_ARG_INFO(0, host)
/PHP-5.5/ext/intl/tests/
H A Dmsgfmt_format_subpatterns_named.phpt23 =0 {{host} does not give a party.}
24 =1 {{host} invites {guest} to her party.}
25 =2 {{host} invites {guest} and one other person to her party.}
26 other {{host} invites {guest} as one of the # people invited to her party.}}}
28 =0 {{host} does not give a party.}
29 =1 {{host} invites {guest} to his party.}
30 =2 {{host} invites {guest} and one other person to his party.}
31 other {{host} invites {guest} as one of the # people invited to his party.}}}
33 =0 {{host} does not give a party.}
34 =1 {{host} invites {guest} to their party.}
[all …]
/PHP-5.5/ext/ldap/
H A Dldap.c293 char *host = NULL; in PHP_FUNCTION() local
310 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|slssl", &host, &hostlen, &port, &wallet, &w… in PHP_FUNCTION()
318 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|sl", &host, &hostlen, &port) != SUCCESS) { in PHP_FUNCTION()
331 if (host != NULL && strchr(host, '/')) { in PHP_FUNCTION()
334 rc = ldap_initialize(&ldap, host); in PHP_FUNCTION()
341 ldap = ldap_init(host, port); in PHP_FUNCTION()
344 ldap = ldap_open(host, port); in PHP_FUNCTION()
/PHP-5.5/ext/ldap/tests/
H A Dbug48441.phpt14 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
38 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
H A Dconnect.inc8 $host = getenv("LDAP_TEST_HOST") ? getenv("LDAP_TEST_HOST") : "localhost";
16 function ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version) {
17 $link = ldap_connect($host, $port);
H A Dldap_add_basic.phpt13 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
35 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
H A Dldap_add_error.phpt13 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
95 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
H A Dldap_bind_basic.phpt13 $link = ldap_connect($host, $port);
H A Dldap_bind_error.phpt13 $link = ldap_connect($host, $port);
H A Dldap_bind_variation.phpt13 $link = ldap_connect($host, $port);
H A Dldap_compare_basic.phpt13 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
25 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
H A Dldap_compare_error.phpt13 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
35 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);

Completed in 120 milliseconds

12345678910>>...24