Searched refs:ndots (Results 1 - 12 of 12) sorted by relevance

/freebsd-13-stable/contrib/libevent/include/event2/
H A Ddns_compat.h243 ndots, timeout, max-timeouts, max-inflight, and attempts
304 Set the 'ndots' parameter for searches.
313 @param ndots the new ndots parameter
315 void evdns_search_ndots_set(const int ndots);
H A Ddns.h101 * number is greater than the ndots setting then the names is first tried
104 * The ndots setting can either be set from a resolv.conf, or by calling
107 * For example, with ndots set to 1 (the default) and a search domain list of
425 ndots, timeout, max-timeouts, max-inflight, attempts, randomize-case,
515 Set the 'ndots' parameter for searches.
520 @param ndots the new ndots parameter
523 void evdns_base_search_ndots_set(struct evdns_base *base, const int ndots);
/freebsd-13-stable/contrib/ntp/sntp/libevent/include/event2/
H A Ddns_compat.h243 ndots, timeout, max-timeouts, max-inflight, and attempts
304 Set the 'ndots' parameter for searches.
313 @param ndots the new ndots parameter
315 void evdns_search_ndots_set(const int ndots);
H A Ddns.h101 * number is greater than the ndots setting then the names is first tried
104 * The ndots setting can either be set from a resolv.conf, or by calling
107 * For example, with ndots set to 1 (the default) and a search domain list of
425 ndots, timeout, max-timeouts, max-inflight, attempts, randomize-case,
515 Set the 'ndots' parameter for searches.
520 @param ndots the new ndots parameter
523 void evdns_base_search_ndots_set(struct evdns_base *base, const int ndots);
/freebsd-13-stable/lib/libc/resolv/
H A Dres_init.c230 statp->ndots = 1;
614 if (!strncmp(cp, "ndots:", sizeof("ndots:") - 1)) {
615 i = atoi(cp + sizeof("ndots:") - 1);
617 statp->ndots = i;
619 statp->ndots = RES_MAXNDOTS;
622 printf(";;\tndots=%d\n", statp->ndots);
H A Dres_query.c244 * try 'as is'. The threshold can be set with the "ndots" option.
248 if (dots >= statp->ndots || trailing_dot) {
/freebsd-13-stable/contrib/libevent/
H A Devdns.c3036 /* The ndots option controls how many dots it takes for the resolver */
3047 int ndots; member in struct:search_state
3072 state->ndots = 1;
3150 evdns_base_search_ndots_set(struct evdns_base *base, const int ndots) { argument
3154 base->global_search_state->ndots = ndots;
3158 evdns_search_ndots_set(const int ndots) { argument
3159 evdns_base_search_ndots_set(current_base, ndots);
3217 if (string_num_dots(name) >= base->global_search_state->ndots) {
3268 if (string_num_dots(handle->search_origname) < handle->search_state->ndots) {
3450 const int ndots = strtoint(val); local
[all...]
/freebsd-13-stable/contrib/ntp/sntp/libevent/
H A Devdns.c3038 /* The ndots option controls how many dots it takes for the resolver */
3049 int ndots; member in struct:search_state
3074 state->ndots = 1;
3152 evdns_base_search_ndots_set(struct evdns_base *base, const int ndots) { argument
3156 base->global_search_state->ndots = ndots;
3160 evdns_search_ndots_set(const int ndots) { argument
3161 evdns_base_search_ndots_set(current_base, ndots);
3216 if (string_num_dots(name) >= base->global_search_state->ndots) {
3267 if (string_num_dots(handle->search_origname) < handle->search_state->ndots) {
3449 const int ndots = strtoint(val); local
[all...]
/freebsd-13-stable/include/
H A Dresolv.h169 unsigned ndots:4; /*%< threshold for initial abs. query */ member in struct:__res_state
/freebsd-13-stable/crypto/openssh/
H A Dssh.c405 int i, direct, ndots; local
461 ndots = 0;
464 ndots++;
466 if (ndots > options.canonicalize_max_dots) {
/freebsd-13-stable/contrib/ldns-host/
H A Dldns-host.c38 ndots(const char *name) { function
598 "Usage: %s [-aCdilrsTvw46] [-c class] [-N ndots] [-R number]\n"
1074 (res, safe_str2rdf_dname(o_name), ndots(o_name) >= o_ndots);
/freebsd-13-stable/lib/libc/net/
H A Dgetaddrinfo.c2854 * try 'as is'. The threshold can be set with the "ndots" option.
2858 if (dots >= res->ndots || trailing_dot) {

Completed in 129 milliseconds