Searched refs:opcode (Results 1 - 25 of 31) sorted by relevance

12

/bind-9.11.3/lib/dns/include/dns/
H A Dopcode.h9 /* $Id: opcode.h,v 1.8 2007/06/19 23:47:17 tbox Exp $ */
14 /*! \file dns/opcode.h */
22 isc_result_t dns_opcode_totext(dns_opcode_t opcode, isc_buffer_t *target);
24 * Put a textual representation of error 'opcode' into 'target'.
27 *\li 'opcode' is a valid opcode.
H A Dmessage.h190 dns_opcode_t opcode; member in struct:dns_message
423 * If #DNS_MESSAGEPARSE_PRESERVEORDER is set, or if the opcode of the message
1008 * is true, the message opcode is query or notify, and the question
/bind-9.11.3/lib/dns/rdata/generic/
H A Dopt_41.h18 isc_uint16_t opcode; member in struct:dns_rdata_opt_opcode
H A Dopt_41.c389 dns_rdata_opt_current(dns_rdata_opt_t *opt, dns_rdata_opt_opcode_t *opcode) { argument
393 REQUIRE(opcode != NULL);
402 opcode->opcode = uint16_fromregion(&r);
404 opcode->length = uint16_fromregion(&r);
406 opcode->data = r.base;
407 INSIST(opt->offset + 4 + opcode->length <= opt->length);
/bind-9.11.3/lib/lwres/include/lwres/
H A Dlwpacket.h66 lwres_uint32_t opcode; member in struct:lwres_lwpacket
/bind-9.11.3/lib/lwres/
H A Dlwpacket.c80 lwres_buffer_putuint32(b, pkt->opcode);
113 pkt->opcode = lwres_buffer_getuint32(b);
H A Dlwres_noop.c18 * the resolver daemon and is simply echoed back. The opcode is intended
21 * There are four main functions for the no-op opcode. One render
47 * is because the no-op opcode simply echos whatever data was sent: the
73 * The no-op opcode functions lwres_nooprequest_render(),
131 pkt->opcode = LWRES_OPCODE_NOOP;
184 pkt->opcode = LWRES_OPCODE_NOOP;
H A Dlwresutil.c305 if (pkt.opcode != LWRES_OPCODE_GETADDRSBYNAME)
415 if (pkt.opcode != LWRES_OPCODE_GETNAMEBYADDR)
530 if (pkt.opcode != LWRES_OPCODE_GETRDATABYNAME)
H A Dlwres_gnba.c15 There are four main functions for the getnamebyaddr opcode. One
72 The getnamebyaddr opcode functions lwres_gnbarequest_render(),
134 pkt->opcode = LWRES_OPCODE_GETNAMEBYADDR;
198 pkt->opcode = LWRES_OPCODE_GETNAMEBYADDR;
H A Dlwres_gabn.c15 There are four main functions for the getaddrbyname opcode. One render
78 The getaddrbyname opcode functions lwres_gabnrequest_render(),
141 pkt->opcode = LWRES_OPCODE_GETADDRSBYNAME;
222 pkt->opcode = LWRES_OPCODE_GETADDRSBYNAME;
H A Dlwres_grbn.c60 pkt->opcode = LWRES_OPCODE_GETRDATABYNAME;
138 pkt->opcode = LWRES_OPCODE_GETRDATABYNAME;
/bind-9.11.3/lib/dns/
H A Dmessage.c29 #include <dns/opcode.h>
362 m->opcode = 0;
1044 * FORMERR. In the future, check the opcode to see if
1297 if (msg->opcode != dns_opcode_update
1311 if (msg->opcode != dns_opcode_update && !msg->tkey &&
1385 if (msg->opcode == dns_opcode_update &&
1405 msg->opcode == dns_opcode_update &&
1455 if (preserve_order || msg->opcode == dns_opcode_update ||
1489 if (preserve_order || msg->opcode == dns_opcode_update ||
1514 * the opcode i
4154 dns_opcode_totext(dns_opcode_t opcode, isc_buffer_t *target) argument
[all...]
H A Dstats.c20 #include <dns/opcode.h>
H A Dxfrin.c1284 msg->opcode != dns_opcode_query ||msg->rdclass != xfr->rdclass ||
1289 msg->opcode != dns_opcode_query)
/bind-9.11.3/bin/named/
H A Dlwdclient.c197 ns_lwdclient_log(50, "opcode %08x", client->pkt.opcode);
199 switch (client->pkt.opcode) {
213 ns_lwdclient_log(50, "unknown opcode %08x", client->pkt.opcode);
H A Dclient.c1032 if (client->message->opcode == dns_opcode_query &&
2467 if (client->message->opcode != dns_opcode_query)
2483 client->message->opcode);
2484 switch (client->message->opcode) {
2528 (client->message->opcode == dns_opcode_query &&
2765 client->message->opcode == dns_opcode_update)) {
2818 switch (client->message->opcode) {
2849 CTRACE("unknown opcode");
/bind-9.11.3/lib/samples/
H A Dsample-request.c93 message->opcode = dns_opcode_query;
H A Dnsprobe.c257 message->opcode = dns_opcode_query;
/bind-9.11.3/bin/dig/include/dig/
H A Ddig.h192 dns_opcode_t opcode; member in struct:dig_lookup
/bind-9.11.3/bin/tests/system/pipelined/
H A Dpipequeries.c151 message->opcode = dns_opcode_query;
/bind-9.11.3/bin/dig/
H A Ddig.c72 /*% opcode text */
199 " +[no]opcode=### (Set the opcode of the request)\n"
595 printf(";; ->>HEADER<<- opcode: %s, status: %s, "
597 opcodetext[msg->opcode],
1185 FULLCHECK("opcode");
1187 lookup->opcode = 0; /* default - query */
1199 lookup->opcode = (dns_opcode_t)num;
1202 result = parse_uint(&num, value, 15, "opcode");
1204 fatal("Couldn't parse opcode");
[all...]
H A Dhost.c490 printf(";; ->>HEADER<<- opcode: %s, status: %s, id: %u\n",
491 opcodetext[msg->opcode], rcode_totext(msg->rcode),
H A Ddighost.c799 looknew->opcode = dns_opcode_query;
939 looknew->opcode = lookold->opcode;
2528 lookup->sendmsg->opcode = lookup->opcode;
/bind-9.11.3/bin/tests/dst/
H A Dgsstest.c217 message->opcode = dns_opcode_query;
/bind-9.11.3/bin/tools/
H A Dmdig.c145 /*% opcode text */
296 printf(";; ->>HEADER<<- opcode: %s, status: %s, "
298 opcodetext[response->opcode],
536 message->opcode = dns_opcode_query;

Completed in 2252 milliseconds

12