| /PHP_5_5/ext/standard/ |
| H A D | dns_win32.c | 46 char *hostname; local 53 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sz|z", &hostname, &hostname_len, &mx_list, &weight_list) == FAILURE) { 57 status = DnsQuery_A(hostname, DNS_TYPE_MX, DNS_QUERY_STANDARD, NULL, &pResult, NULL); 95 char *hostname, *rectype = NULL; local 102 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|s", &hostname, &hostname_len, &rectype, &rectype_len) == FAILURE) { 130 status = DnsQuery_A(hostname, type, DNS_QUERY_STANDARD, NULL, &pResult, NULL); 346 /* {{{ proto array|false dns_get_record(string hostname [, int type[, array authns, array addtl]]) 350 char *hostname; local 358 &hostname, &hostname_len, &type_param, &authns, &addtl, &raw) == FAILURE) { 455 status = DnsQuery_A(hostname, type_to_fetc [all...] |
| H A D | fsock.c | 44 char *hostname = NULL; local 59 hostname_len = spprintf(&hostname, 0, "%s:%ld", host, port); 62 hostname = host; 79 stream = php_stream_xport_create(hostname, hostname_len, REPORT_ERRORS, 83 efree(hostname); 119 /* {{{ proto resource fsockopen(string hostname, int port [, int errno [, string errstr [, float timeout]]]) 126 /* {{{ proto resource pfsockopen(string hostname, int port [, int errno [, string errstr [, float timeout]]])
|
| H A D | dns.c | 69 /* For the local hostname obtained via gethostname which is different from the 157 char *hostname; local 163 hostname = php_gethostbyaddr(addr); 165 if (hostname == NULL) { 173 RETVAL_STRING(hostname, 0); 213 /* {{{ proto string gethostbyname(string hostname) 217 char *hostname; local 221 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &hostname, &hostname_len) == FAILURE) { 225 addr = php_gethostbyname(hostname); 231 /* {{{ proto array gethostbynamel(string hostname) 235 char *hostname; local 348 char *hostname, *rectype = NULL; local 716 char *hostname; local 928 char *hostname; local [all...] |
| /PHP_5_5/ext/interbase/ |
| H A D | ibase_service.c | 34 char *hostname; member in struct:__anon110 49 if (sv->hostname) { 50 efree(sv->hostname); 247 svm->hostname = estrdup(host);
|
| /PHP_5_5/ext/sybase_ct/ |
| H A D | php_sybase_ct.h | 71 char *hostname; variable
|
| /PHP_5_5/sapi/milter/ |
| H A D | php_milter.c | 177 static sfsistat mlfi_connect(SMFICTX *ctx, char *hostname, _SOCK_ADDR *hostaddr) argument 221 ZVAL_STRING(param[0], hostname, 1);
|
| /PHP_5_5/ext/mysqli/ |
| H A D | mysqli_nonapi.c | 65 char *hostname = NULL, *username=NULL, *passwd=NULL, *dbname=NULL, *socket=NULL; local 89 hostname = username = dbname = passwd = socket = NULL; 92 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|ssssls", &hostname, &hostname_len, &username, &username_len, 111 &hostname, &hostname_len, &username, &username_len, &passwd, &passwd_len, &dbname, &dbname_len, &port, &socket, &socket_len, 141 if (!hostname || !hostname_len) { 142 hostname = MyG(default_host); 152 if (strlen(SAFE_STR(hostname)) > 2 && !strncasecmp(hostname, "p:", 2)) { 153 hostname += 2; 159 hash_len = spprintf(&hash_key, 0, "mysqli_%s_%s%ld%s%s%s", SAFE_STR(hostname), SAFE_ST [all...] |
| /PHP_5_5/ext/snmp/ |
| H A D | snmp.c | 1121 static int netsnmp_session_init(php_snmp_session **session_p, int version, char *hostname, char *community, int timeout, int retries TSRMLS_DC) argument 1145 php_error_docref(NULL TSRMLS_CC, E_WARNING, "emalloc() failed while copying hostname"); 1148 /* we copy original hostname for further processing */ 1149 strlcpy(session->peername, hostname, MAX_NAME_LEN); 1152 /* Reading the hostname and its optional non-default port number */ 1211 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unknown failure while resolving '%s'", hostname); 1802 /* {{{ proto SNMP SNMP::__construct(int version, string hostname, string community|securityName [, long timeout [, long retries]]) 2137 add_assoc_zval(*retval, "hostname", val);
|