Home
last modified time | relevance | path

Searched refs:ndots (Results 1 – 15 of 15) sorted by relevance

/freebsd/usr.sbin/bsdconfig/networking/share/
H A Dresolv.subr124 ndots = split(subdomain, labels, ".") - 1
125 while ( ndots-- >= search_ndots ) {
170 local search nfields ndots domain="${hostname#*.}"
174 ndots=$(( $nfields - 1 ))
175 while [ $ndots -ge ${RESOLVER_SEARCH_NDOTS:-1} ]; do
178 ndots=$(( $ndots - 1 ))
/freebsd/crypto/krb5/src/lib/krb5/os/
H A Dhostrealm.c320 int ndots = 0; in k5_is_numeric_address() local
328 ndots++; in k5_is_numeric_address()
330 if (ndots == 3) in k5_is_numeric_address()
/freebsd/contrib/ntp/sntp/libevent/include/event2/
H A Ddns_compat.h333 void evdns_search_ndots_set(const int ndots);
H A Ddns.h556 void evdns_base_search_ndots_set(struct evdns_base *base, const int ndots);
/freebsd/contrib/libevent/include/event2/
H A Ddns_compat.h333 void evdns_search_ndots_set(const int ndots);
H A Ddns.h556 void evdns_base_search_ndots_set(struct evdns_base *base, const int ndots);
/freebsd/contrib/ntp/sntp/libevent/
H A Devdns.c3081 int ndots; member
3106 state->ndots = 1; in search_state_new()
3184 evdns_base_search_ndots_set(struct evdns_base *base, const int ndots) { in evdns_base_search_ndots_set() argument
3188 base->global_search_state->ndots = ndots; in evdns_base_search_ndots_set()
3192 evdns_search_ndots_set(const int ndots) { in evdns_search_ndots_set() argument
3193 evdns_base_search_ndots_set(current_base, ndots); in evdns_search_ndots_set()
3251 if (string_num_dots(name) >= base->global_search_state->ndots) { in search_request_new()
3302 if (string_num_dots(handle->search_origname) < handle->search_state->ndots) { in search_try_next()
3490 const int ndots = strtoint(val); in evdns_base_set_option_impl() local
3491 if (ndots == -1) return -1; in evdns_base_set_option_impl()
[all …]
/freebsd/contrib/libevent/
H A Devdns.c3081 int ndots; member
3106 state->ndots = 1; in search_state_new()
3184 evdns_base_search_ndots_set(struct evdns_base *base, const int ndots) { in evdns_base_search_ndots_set() argument
3188 base->global_search_state->ndots = ndots; in evdns_base_search_ndots_set()
3192 evdns_search_ndots_set(const int ndots) { in evdns_search_ndots_set() argument
3193 evdns_base_search_ndots_set(current_base, ndots); in evdns_search_ndots_set()
3251 if (string_num_dots(name) >= base->global_search_state->ndots) { in search_request_new()
3302 if (string_num_dots(handle->search_origname) < handle->search_state->ndots) { in search_try_next()
3490 const int ndots = strtoint(val); in evdns_base_set_option_impl() local
3491 if (ndots == -1) return -1; in evdns_base_set_option_impl()
[all …]
/freebsd/lib/libc/resolv/
H A Dres_init.c181 statp->ndots = 1; in __res_vinit()
709 statp->ndots = num; in res_setoptions()
712 printf(";;\tndots=%d\n", statp->ndots); in res_setoptions()
H A Dres_query.c236 if (dots >= statp->ndots || trailing_dot) { in res_nsearch()
/freebsd/include/
H A Dresolv.h160 unsigned ndots:4; /*%< threshold for initial abs. query */ member
/freebsd/crypto/openssh/
H A Dssh.c417 int i, direct, ndots; in resolve_canonicalize() local
472 ndots = 0; in resolve_canonicalize()
475 ndots++; in resolve_canonicalize()
477 if (ndots > options.canonicalize_max_dots) { in resolve_canonicalize()
/freebsd/contrib/ldns-host/
H A Dldns-host.c38 ndots(const char *name) { in ndots() function
1074 (res, safe_str2rdf_dname(o_name), ndots(o_name) >= o_ndots); in main()
/freebsd/contrib/unbound/doc/
H A Dlibunbound.rst298 Only nameservers are picked up, the searchdomain, ndots and other
/freebsd/lib/libc/net/
H A Dgetaddrinfo.c2900 if (dots >= res->ndots || trailing_dot) { in res_searchN()