Home
last modified time | relevance | path

Searched refs:hostname (Results 51 – 72 of 72) sorted by relevance

123

/php-src/build/
H A Dshtool679 hostname=''
682 hostname="`(uname -n) 2>/dev/null |\
684 if [ ".$hostname" = . ]; then
685 hostname="`(hostname) 2>/dev/null |\
687 if [ ".$hostname" = . ]; then
688 hostname='unknown'
691 case $hostname in
693 domainname=".`echo $hostname | cut -d. -f2-`"
694 hostname="`echo $hostname | cut -d. -f1`"
759 -e "s/%h/${hostname}/g" \
H A Dlibtool.m44169 # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
/php-src/ext/mysqli/
H A Dmysqli_nonapi.c53 char *hostname = NULL, *username=NULL, *passwd=NULL, *dbname=NULL, *socket=NULL, local
79 hostname = username = dbname = passwd = socket = NULL;
82 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "|s!s!s!s!l!s!", &hostname, &hostname_len, &username, &…
102 …&hostname, &hostname_len, &username, &username_len, &passwd, &passwd_len, &dbname, &dbname_len, &p…
128 if (!hostname || !hostname_len) {
129 hostname = MyG(default_host);
139 if (strlen(SAFE_STR(hostname)) > 2 && !strncasecmp(hostname, "p:", 2)) {
140 hostname += 2;
146 …hash_key = strpprintf(0, "mysqli_%s_%s" ZEND_LONG_FMT "%s%s%s", SAFE_STR(hostname), SAFE_STR(socke…
251 if (mysqlnd_connect(mysql->mysql, hostname, username, passwd, passwd_len, dbname, dbname_len,
H A Dmysqli.stub.php723 ?string $hostname = null, argument
773 ?string $hostname = null,
892 ?string $hostname = null,
1353 ?string $hostname = null,
1531 ?string $hostname = null,
H A Dmysqli_arginfo.h37 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, hostname, IS_STRING, 1, "null")
239 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, hostname, IS_STRING, 1, "null")
417 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, hostname, IS_STRING, 1, "null")
449 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, hostname, IS_STRING, 1, "null")
517 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, hostname, IS_STRING, 1, "null")
/php-src/ext/snmp/tests/
H A Dbug64124.phpt20 # hostname variable was modified inline in netsnmp_session_init()
H A Dsnmp_include.inc12 $hostname = "$hostname4:$port";
H A Dsnmp-object-setSecurity_error.phpt19 $session = new SNMP(SNMP::VERSION_3, $hostname, $user_noauth, $timeout, $retries);
44 …var_dump(snmp3_get($hostname, $community, 'authPriv', 'MD5', $auth_pass, 'BBB', '', '.1.3.6.1.2.1.…
H A Dsnmp-object-properties-error.phpt13 $session = new SNMP(SNMP::VERSION_1, $hostname, $community, $timeout, $retries);
/php-src/ext/ftp/
H A Dftp.stub.php62 … function ftp_connect(string $hostname, int $port = 21, int $timeout = 90): FTP\Connection|false {} argument
65 …function ftp_ssl_connect(string $hostname, int $port = 21, int $timeout = 90): FTP\Connection|fals… argument
H A Dftp_arginfo.h5 ZEND_ARG_TYPE_INFO(0, hostname, IS_STRING, 0)
12 ZEND_ARG_TYPE_INFO(0, hostname, IS_STRING, 0)
/php-src/ext/filter/
H A Dlogical_filters.c511 int hostname = flags & FILTER_FLAG_HOSTNAME; in _php_filter_validate_domain() local
531 if(*s == '.' || (hostname && !isalnum((int)*(unsigned char *)s))) { in _php_filter_validate_domain()
538 …if (*(s + 1) == '.' || (hostname && (!isalnum((int)*(unsigned char *)(s - 1)) || !isalnum((int)*(u… in _php_filter_validate_domain()
545 if (i > 63 || (hostname && *s != '-' && !isalnum((int)*(unsigned char *)s))) { in _php_filter_validate_domain()
/php-src/ext/standard/
H A Dbasic_functions.stub.php2136 function gethostbyname(string $hostname): string {}
2142 function gethostbynamel(string $hostname): array|false {}
2145 function dns_check_record(string $hostname, string $type = "MX"): bool {}
2148 function checkdnsrr(string $hostname, string $type = "MX"): bool {}
2156 function dns_get_record(string $hostname, int $type = DNS_ANY, &$authoritative_name_servers = null,…
2162 function dns_get_mx(string $hostname, &$hosts, &$weights = null): bool {}
2169 function getmxrr(string $hostname, &$hosts, &$weights = null): bool {}
3002 function fsockopen(string $hostname, int $port = -1, &$error_code = null, &$error_message = null, ?…
3009 function pfsockopen(string $hostname, int $port = -1, &$error_code = null, &$error_message = null, …
H A Dbasic_functions_arginfo.h635 ZEND_ARG_TYPE_INFO(0, hostname, IS_STRING, 0)
639 ZEND_ARG_TYPE_INFO(0, hostname, IS_STRING, 0)
644 ZEND_ARG_TYPE_INFO(0, hostname, IS_STRING, 0)
651 ZEND_ARG_TYPE_INFO(0, hostname, IS_STRING, 0)
659 ZEND_ARG_TYPE_INFO(0, hostname, IS_STRING, 0)
1487 ZEND_ARG_TYPE_INFO(0, hostname, IS_STRING, 0)
/php-src/ext/standard/tests/general_functions/
H A Dparse_ini_basic.data156 hostname = localhost:${undefined_var:-8080}
H A Dparse_ini_basic.phpt323 ["hostname"]=>
/php-src/ext/mysqlnd/
H A Dmysqlnd_structs.h430 …c_mysqlnd_conn_data__connect)(MYSQLND_CONN_DATA * conn, MYSQLND_CSTRING hostname, MYSQLND_CSTRING …
516 …ysqlnd_conn_data__get_scheme)(MYSQLND_CONN_DATA * conn, MYSQLND_CSTRING hostname, MYSQLND_CSTRING …
607 …tus (*func_mysqlnd_data__connect)(MYSQLND * conn, const MYSQLND_CSTRING hostname, const MYSQLND_CS…
893 MYSQLND_STRING hostname; member
/php-src/ext/mysqli/tests/
H A Dmysqli_real_connect.phpt15 …// ( mysqli link [, string hostname [, string username [, string passwd [, string dbname [, int p…
/php-src/ext/snmp/
H A Dsnmp.c795 static bool netsnmp_session_init(php_snmp_session **session_p, int version, zend_string *hostname, … in netsnmp_session_init() argument
816 strlcpy(session->peername, ZSTR_VAL(hostname), MAX_NAME_LEN); in netsnmp_session_init()
872 php_error_docref(NULL, E_WARNING, "Unknown failure while resolving '%s'", ZSTR_VAL(hostname)); in netsnmp_session_init()
/php-src/ext/sockets/
H A Dsockets.c2440 zend_string *hostname, *key; local
2447 Z_PARAM_STR(hostname)
2475 if (getaddrinfo(ZSTR_VAL(hostname), service, &hints, &result) != 0) {
/php-src/ext/fileinfo/tests/
H A Dmagic私はガラスを食べられます12293 # hostname[33] XORed
12294 >>0x165 ubyte^0x1BF x \b, hostname %c
39864 # hostname
39872 # hostname
H A Dmagic12293 # hostname[33] XORed
12294 >>0x165 ubyte^0x1BF x \b, hostname %c
39864 # hostname
39872 # hostname

Completed in 315 milliseconds

123