Home
last modified time | relevance | path

Searched refs:host (Results 526 – 550 of 634) sorted by relevance

1...<<212223242526

/PHP-7.4/ext/ldap/tests/
H A Dldap_bind_ext.phpt16 $link = ldap_connect($host, $port);
H A Dldap_controls.phpt17 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
58 $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
H A Dldap_get_option_variation.phpt12 $link = ldap_connect($host, $port);
H A Dldap_set_option_error.phpt12 $link = ldap_connect($host, $port);
H A Dldap_sort_error.phpt12 $link = ldap_connect($host, $port);
H A Dldap_set_option_variation.phpt12 $link = ldap_connect($host, $port);
/PHP-7.4/ext/mysqli/tests/
H A Dbug35759.phpt14 $mysql = new mysqli($host, $user, $passwd, $db, $port, $socket);
H A Dmysqli_real_escape_string_sjis.phpt10 if (!$link = mysqli_connect($host, $user, $passwd, $db, $port, $socket)) {
H A D065.phpt16 if (!$mysql = new my_mysqli($host, $user, $passwd, $db, $port, $socket))
H A Dbug67839.phpt14 if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket)) {
H A Dps_cursor_multiple_result_sets.phpt13 $db = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket);
H A Dmysqli_pam_sha256_public_key_ini.phpt17 if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket))
100 $link = new mysqli($host, 'shatest', 'shatest', $db, $port, $socket);
H A Dmysqli_pam_sha256_public_key_option.phpt17 if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket))
102 if (!$link->real_connect($host, 'shatest', 'shatest', $db, $port, $socket)) {
H A Dmysqli_no_reconnect.phpt16 if (!$link2 = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket))
76 if (!$link = @my_mysqli_connect($host, $user, $passwd, $db, $port, $socket))
/PHP-7.4/ext/standard/
H A Dstreamsfuncs.c93 zend_string *host; in PHP_FUNCTION() local
108 Z_PARAM_STR(host) in PHP_FUNCTION()
120 spprintf(&hashkey, 0, "stream_socket_client__%s", ZSTR_VAL(host)); in PHP_FUNCTION()
139 stream = php_stream_xport_create(ZSTR_VAL(host), ZSTR_LEN(host), REPORT_ERRORS, in PHP_FUNCTION()
147 zend_string *quoted_host = php_addslashes(host); in PHP_FUNCTION()
182 char *host; in PHP_FUNCTION() local
194 Z_PARAM_STRING(host, host_len) in PHP_FUNCTION()
215 stream = php_stream_xport_create(host, host_len, REPORT_ERRORS, in PHP_FUNCTION()
220 …php_error_docref(NULL, E_WARNING, "unable to connect to %s (%s)", host, errstr == NULL ? "Unknown … in PHP_FUNCTION()
H A Dhttp_fopen_wrapper.c204 …nsport_string, 0, "%s://%s:%d", use_ssl ? "ssl" : "tcp", ZSTR_VAL(resource->host), resource->port); in php_stream_url_wrap_http_ex()
247 ZVAL_STR_COPY(&ssl_proxy_peer_name, resource->host); in php_stream_url_wrap_http_ex()
253 smart_str_appends(&header, ZSTR_VAL(resource->host)); in php_stream_url_wrap_http_ex()
563 smart_str_appends(&req_buf, ZSTR_VAL(resource->host)); in php_stream_url_wrap_http_ex()
878 …path) - 1, "%s://%s:%d%s", ZSTR_VAL(resource->scheme), ZSTR_VAL(resource->host), resource->port, l… in php_stream_url_wrap_http_ex()
880 …sizeof(new_path) - 1, "%s://%s%s", ZSTR_VAL(resource->scheme), ZSTR_VAL(resource->host), loc_path); in php_stream_url_wrap_http_ex()
/PHP-7.4/build/
H A Dltmain.sh1584 case $host in
1630 case $host in
1707 case $host in
2715 case $host in
2962 case $host in
3827 case $host in
4501 case $host in
4947 case $host in
4953 case $host in
5473 case $host in
[all …]
/PHP-7.4/sapi/fpm/tests/
H A Dtester.inc428 * @param string $host
435 $host = '127.0.0.1',
690 $host = 'unix://' . $address;
694 $host = $addressParts[0];
696 $host .= ']';
703 $host = $addressParts[0];
708 return new Client($host, $port);
711 if (!isset($this->clients[$host][$port])) {
712 $client = new Client($host, $port);
714 $this->clients[$host][$port] = $client;
[all …]
/PHP-7.4/sapi/cli/
H A Dphp_cli_server.c188 char *host; member
2332 if (server->host) { in php_cli_server_dtor()
2333 pefree(server->host, 1); in php_cli_server_dtor()
2383 char *host = NULL; in php_cli_server_ctor() local
2394 if (!host) { in php_cli_server_ctor()
2397 p = strchr(host, ']'); in php_cli_server_ctor()
2411 if (!host) { in php_cli_server_ctor()
2414 p = strchr(host, ':'); in php_cli_server_ctor()
2447 server->host = host; in php_cli_server_ctor()
2485 if (host) { in php_cli_server_ctor()
[all …]
/PHP-7.4/ext/filter/
H A Dlogical_filters.c602 if (url->host == NULL) { in php_filter_validate_url()
606 s = ZSTR_VAL(url->host); in php_filter_validate_url()
607 l = ZSTR_LEN(url->host); in php_filter_validate_url()
618 if (!_php_filter_validate_domain(ZSTR_VAL(url->host), l, FILTER_FLAG_HOSTNAME)) { in php_filter_validate_url()
627 …(url->host == NULL && (strcmp(ZSTR_VAL(url->scheme), "mailto") && strcmp(ZSTR_VAL(url->scheme), "n… in php_filter_validate_url()
/PHP-7.4/main/
H A Dfastcgi.c655 char host[MAXPATHLEN]; in fcgi_listen() local
671 strncpy(host, path, s-path); in fcgi_listen()
672 host[s-path] = '\0'; in fcgi_listen()
678 host[0] = '\0'; in fcgi_listen()
690 if (!*host || !strncmp(host, "*", sizeof("*")-1)) { in fcgi_listen()
693 sa.sa_inet.sin_addr.s_addr = inet_addr(host); in fcgi_listen()
697 if(strlen(host) > MAXFQDNLEN) { in fcgi_listen()
700 hep = php_network_gethostbyname(host); in fcgi_listen()
703 fcgi_log(FCGI_ERROR, "Cannot resolve host name '%s'!\n", host); in fcgi_listen()
706 … fcgi_log(FCGI_ERROR, "Host '%s' has multiple addresses. You must choose one explicitly!\n", host); in fcgi_listen()
/PHP-7.4/ext/pdo_mysql/tests/
H A Dconfig.inc13 $config['ENV']['PDOTEST_DSN'] = 'mysql:host=localhost;dbname=test';
/PHP-7.4/TSRM/
H A Dthreads.m434 if test -z "$host_alias" && test -n "$host"; then
35 host_alias=$host
/PHP-7.4/ext/snmp/tests/
H A Dreflection.phpt29 Parameter #1 [ <required> $host ]
/PHP-7.4/ext/ftp/tests/
H A Dserver.inc225 $host = "$m[1].$m[2].$m[3].$m[4]";
234 if (!$fs = stream_socket_client("tcp://$host:$port")) {
273 if (!$fs = stream_socket_client("tcp://$host:$port")) {
313 if (!$fs = stream_socket_client("tcp://$host:$port")) {
369 else if (!$fs = stream_socket_client("tcp://$host:$port")) {
436 $host = "127.0.0.1";
523 if(!$fs = stream_socket_client("tcp://$host:$port")) {

Completed in 81 milliseconds

1...<<212223242526