Home | History | Annotate | Download | only in libevent

Lines Matching defs:ndots

2374 /* The ndots option controls how many dots it takes for the resolver */
2385 int ndots;
2412 state->ndots = 1;
2474 evdns_search_ndots_set(const int ndots) {
2477 global_search_state->ndots = ndots;
2527 if (string_num_dots(name) >= global_search_state->ndots) {
2568 if (string_num_dots(req->search_origname) < req->search_state->ndots) {
2655 if (!strncmp(option, "ndots:", 6)) {
2656 const int ndots = strtoint(val);
2657 if (ndots == -1) return -1;
2659 log(EVDNS_LOG_DEBUG, "Setting ndots to %d", ndots);
2662 global_search_state->ndots = ndots;