| /src/external/bsd/libevent/dist/include/event2/ |
| dns_struct.h | 60 struct evdns_server_question **questions; member in struct:evdns_server_request
|
| /src/external/bsd/ntp/dist/sntp/libevent/include/event2/ |
| dns_struct.h | 61 struct evdns_server_question **questions; member in struct:evdns_server_request
|
| /src/external/mpl/bind/dist/bin/tests/system/digdelv/ans7/ |
| ans.pl | 59 my @questions = $packet->question; 60 my $qname = $questions[0]->qname; 61 my $qtype = $questions[0]->qtype;
|
| /src/external/bsd/libevent/dist/sample/ |
| dns-example.c | 115 /* dummy; give 192.168.11.11 as an answer for all A questions, 116 * give foo.bar.example.com as an answer for all PTR questions. */ 119 if (req->questions[i]->type == EVDNS_TYPE_A && 120 req->questions[i]->dns_question_class == EVDNS_CLASS_INET) { 121 printf(" -- replying for %s (A)\n", req->questions[i]->name); 122 r = evdns_server_request_add_a_reply(req, req->questions[i]->name, 126 } else if (req->questions[i]->type == EVDNS_TYPE_PTR && 127 req->questions[i]->dns_question_class == EVDNS_CLASS_INET) { 128 printf(" -- replying for %s (PTR)\n", req->questions[i]->name); 129 r = evdns_server_request_add_ptr_reply(req, NULL, req->questions[i]->name [all...] |
| /src/external/mpl/bind/dist/bin/tests/system/digdelv/ans6/ |
| ans.pl | 54 my @questions = $packet->question; 55 my $qname = $questions[0]->qname; 56 my $qtype = $questions[0]->qtype;
|
| /src/external/mpl/bind/dist/bin/tests/system/resolver/ans8/ |
| ans.pl | 60 my @questions = $request->question; 61 my $qname = $questions[0]->qname; 62 my $qtype = $questions[0]->qtype; 63 my $qclass = $questions[0]->qclass; 72 # Responses to queries for no-questions/NS and ns.no-questions/A are 74 if ($qname eq "no-questions" && $qtype eq "NS") { 75 $response->push("answer", new Net::DNS::RR($qname . " 300 NS ns.no-questions")); 76 $response->push("additional", new Net::DNS::RR("ns.no-questions. 300 A 10.53.0.8")); 78 } elsif ($qname eq "ns.no-questions") { [all...] |
| /src/external/mpl/bind/dist/bin/tests/system/digdelv/ans5/ |
| ans.pl | 118 my @questions = $request->question; 119 my $qname = $questions[0]->qname; 120 my $qtype = $questions[0]->qtype; 121 my $qclass = $questions[0]->qclass;
|
| /src/external/mpl/bind/dist/bin/tests/system/ |
| ans.pl | 155 my @questions = $request->question; 156 my $qname = $questions[0]->qname; 157 my $qtype = $questions[0]->qtype; 158 my $qclass = $questions[0]->qclass; 358 my @questions = $request->question; 359 my $qname = $questions[0]->qname; 360 my $qtype = $questions[0]->qtype; 361 my $qclass = $questions[0]->qclass;
|
| /src/external/mpl/bind/dist/bin/tests/system/resolver/ans2/ |
| ans.pl | 58 my @questions = $packet->question; 59 my $qname = $questions[0]->qname; 60 my $qtype = $questions[0]->qtype;
|
| /src/external/mpl/bind/dist/bin/tests/system/serve-stale/ans2/ |
| ans.pl | 345 my @questions = $request->question; 346 my $qname = $questions[0]->qname; 347 my $qclass = $questions[0]->qclass; 348 my $qtype = $questions[0]->qtype; 363 $reply->push("question", @questions);
|
| /src/external/mpl/bind/dist/bin/tests/system/resolver/ans3/ |
| ans.pl | 66 my @questions = $packet->question; 67 my $qname = $questions[0]->qname; 68 my $qtype = $questions[0]->qtype;
|
| /src/distrib/mvme68k/miniroot/ |
| install.md | 183 and rational way. You'll be asked several questions, and it would probably be 197 Default answers are displayed in brackets after the questions. You can hit
|
| /src/external/bsd/libevent/dist/test/ |
| regress_testutils.c | 162 question = req->questions[0]->name;
|
| regress_dns.c | 246 const int qtype = req->questions[i]->type; 247 const int qclass = req->questions[i]->dns_question_class; 248 const char *qname = req->questions[i]->name; 641 question = req->questions[0]->name; 714 question = req->questions[0]->name; 1081 const int qtype = req->questions[i]->type; 1082 const int qclass = req->questions[i]->dns_question_class; 1083 const char *qname = req->questions[i]->name; 1836 evdns_server_request_add_a_reply(req, req->questions[0]->name, 1,
|
| /src/external/bsd/ntp/dist/sntp/libevent/test/ |
| regress_testutils.c | 161 question = req->questions[0]->name;
|
| regress_dns.c | 244 const int qtype = req->questions[i]->type; 245 const int qclass = req->questions[i]->dns_question_class; 246 const char *qname = req->questions[i]->name; 639 question = req->questions[0]->name; 712 question = req->questions[0]->name; 1079 const int qtype = req->questions[i]->type; 1080 const int qclass = req->questions[i]->dns_question_class; 1081 const char *qname = req->questions[i]->name; 1834 evdns_server_request_add_a_reply(req, req->questions[0]->name, 1,
|
| /src/external/bsd/libevent/dist/ |
| evdns.c | 305 /* Caller-visible fields: flags, questions. */ 1045 u16 trans_id, questions, answers, authority, additional, datalength; local 1056 GET16(questions); 1088 for (i = 0; i < questions; ++i) { 1244 u16 trans_id, flags, questions, answers, authority, additional; local 1252 GET16(questions); 1273 server_req->base.questions = mm_calloc(sizeof(struct evdns_server_question *), questions); 1274 if (server_req->base.questions == NULL) 1277 for (i = 0; i < questions; ++i) [all...] |
| /src/external/bsd/ntp/dist/sntp/libevent/ |
| evdns.c | 303 /* Caller-visible fields: flags, questions. */ 1043 u16 trans_id, questions, answers, authority, additional, datalength; local 1054 GET16(questions); 1086 for (i = 0; i < questions; ++i) { 1242 u16 trans_id, flags, questions, answers, authority, additional; local 1250 GET16(questions); 1271 server_req->base.questions = mm_calloc(sizeof(struct evdns_server_question *), questions); 1272 if (server_req->base.questions == NULL) 1275 for (i = 0; i < questions; ++i) [all...] |
| /src/external/apache2/mDNSResponder/dist/ServiceRegistration/ |
| dnssd-proxy.c | 136 question_t *NULLABLE questions; // Questions that have been asked in the served domain. member in struct:served_domain 198 question_t *next; // List of questions that are being asked. 226 int num_questions; // In case of a multi-question query, how many questions were asked 277 question_t *questions_without_domain; // Questions that aren't in a served domain 543 if (dp_iterate_questions_on_list(domain->questions, callback, context)) { 600 // NULLs out all outstanding questions (after an mDNSResponder crash). These pointers are rendered invalid when the 732 question_t **questions, *q_cur; local 734 questions = &question->served_domain->questions; 3113 question_t **questions, *ret = NULL; local [all...] |
| srp-parse.c | 319 if (message->questions[0].type != dns_rrtype_soa) { 321 message->questions[0].type); 330 update_zone = message->questions[0].name;
|
| fromwire.c | 698 FREE(qdcount, questions); 755 PARSE(qdcount, questions, "question", false);
|
| dns-msg.h | 187 dns_rr_t *NULLABLE questions; member in struct:dns_message
|
| wireutils.c | 652 // Questions don't have RDATA. 733 case 0: count = message->qdcount; rrs = message->questions; break;
|
| /src/external/mpl/bind/dist/bin/tests/system/resolver/ |
| tests.sh | 722 dig_with_opts @10.53.0.5 truncated.no-questions. a +tries=3 +time=4 >dig.ns5.out.${n} || ret=1 732 dig_with_opts @10.53.0.5 not-truncated.no-questions. a +tries=3 +time=4 >dig.ns5.out.${n} || ret=1 746 dig_with_opts @10.53.0.5 -b 10.53.0.5 tcpalso.no-questions. a +tries=2 +timeout=15 >dig.ns5.out.${n} || ret=1 750 grep 'resolving tcpalso.no-questions/A for [^:]*: empty question section, accepting it anyway as TC=1' nextpart.out.${n} >/dev/null || return 1 751 grep '(tcpalso.no-questions/A): connecting via TCP' nextpart.out.${n} >/dev/null || return 1 752 grep 'resolving tcpalso.no-questions/A for [^:]*: empty question section$' nextpart.out.${n} >/dev/null || return 1 753 grep '(tcpalso.no-questions/A): nextitem' nextpart.out.${n} >/dev/null || return 1
|
| /src/distrib/miniroot/ |
| install.sub | 645 several questions. The correct set of commands will be placed in a script
|