Home | History | Annotate | Download | only in libevent

Lines Matching defs:option

2374 /* The ndots option controls how many dots it takes for the resolver */
2653 evdns_set_option(const char *option, const char *val, int flags)
2655 if (!strncmp(option, "ndots:", 6)) {
2663 } else if (!strncmp(option, "timeout:", 8)) {
2669 } else if (!strncmp(option, "max-timeouts:", 12)) {
2676 } else if (!strncmp(option, "max-inflight:", 13)) {
2683 } else if (!strncmp(option, "attempts:", 9)) {
2726 const char *option;
2727 while ((option = NEXT_TOKEN)) {
2728 const char *val = strchr(option, ':');
2729 evdns_set_option(option, val ? val+1 : "", flags);
3149 fprintf(stderr, "Unknown option %s\n", v[idx]);