Lines Matching defs:respctx
739 typedef struct respctx { struct
740 isc_task_t *task;
741 dns_dispatchevent_t *devent;
742 resquery_t *query;
743 fetchctx_t *fctx;
744 isc_result_t result;
745 unsigned int retryopts; /* updated options to pass to
748 dns_rdatatype_t type; /* type being sought (set to
750 bool aa; /* authoritative answer? */
751 dns_trust_t trust; /* answer trust level */
752 bool chaining; /* CNAME/DNAME processing? */
753 bool next_server; /* give up, try the next server
756 badnstype_t broken_type; /* type of name server problem
758 isc_result_t broken_server;
760 bool get_nameservers; /* get a new NS rrset at
762 bool resend; /* resend this query? */
763 bool nextitem; /* invalid response; keep
765 bool truncated; /* response was truncated */
766 bool no_response; /* no response was received */
767 bool glue_in_answer; /* glue may be in the answer
769 bool ns_in_answer; /* NS may be in the answer
771 bool negative; /* is this a negative response? */
773 isc_stdtime_t now; /* time info */
774 isc_time_t tnow;
775 isc_time_t *finish;
777 unsigned int dname_labels;
778 unsigned int domain_labels; /* range of permissible number
803 } respctx_t; argument