Searched defs:addtl (Results 1 - 2 of 2) sorted by relevance
| /PHP_5_5/ext/standard/ |
| H A D | dns_win32.c | 346 /* {{{ proto array|false dns_get_record(string hostname [, int type[, array authns, array addtl]]) 353 zval *authns = NULL, *addtl = NULL; local 358 &hostname, &hostname_len, &type_param, &authns, &addtl, &raw) == FAILURE) { 366 if (addtl) { 367 zval_dtor(addtl); 368 array_init(addtl); 396 type < (addtl ? (PHP_DNS_NUM_TYPES + 2) : PHP_DNS_NUM_TYPES) || first_query; 494 if (addtl && pRec->Flags.S.Section == DnsSectionAdditional) { 497 add_next_index_zval(addtl, retval);
|
| H A D | dns.c | 712 /* {{{ proto array|false dns_get_record(string hostname [, int type[, array authns, array addtl]]) 719 zval *authns = NULL, *addtl = NULL; local 737 &hostname, &hostname_len, &type_param, &authns, &addtl, &raw) == FAILURE) { 745 if (addtl) { 746 zval_dtor(addtl); 747 array_init(addtl); 784 type < (addtl ? (PHP_DNS_NUM_TYPES + 2) : PHP_DNS_NUM_TYPES) || first_query; 893 if (authns || addtl) { 895 * Process when only requesting addtl so that we can skip through the section 907 if (addtl) { [all...] |
Completed in 4 milliseconds