Searched refs:opt (Results 1 - 25 of 34) sorted by relevance

12

/bind-9.11.3/lib/dns/rdata/generic/
H A Dopt_41.c89 isc_uint16_t opt; local
107 opt = uint16_fromregion(&sregion);
114 switch (opt) {
230 dns_rdata_opt_t *opt = source; local
236 REQUIRE(opt->common.rdtype == type);
237 REQUIRE(opt->common.rdclass == rdclass);
238 REQUIRE(opt->options != NULL || opt->length == 0);
243 region.base = opt->options;
244 region.length = opt
261 dns_rdata_opt_t *opt = target; local
284 dns_rdata_opt_t *opt = source; local
354 dns_rdata_opt_first(dns_rdata_opt_t *opt) argument
368 dns_rdata_opt_next(dns_rdata_opt_t *opt) argument
389 dns_rdata_opt_current(dns_rdata_opt_t *opt, dns_rdata_opt_opcode_t *opcode) argument
[all...]
/bind-9.11.3/contrib/dnsperf-2.1.0.0-1/
H A Dopt.c30 #include "opt.h"
63 opt_t *opt; local
68 opt = &opts[nopts++];
69 opt->c = c;
70 opt->type = type;
71 opt->desc = desc;
72 opt->help = help;
74 strncpy(opt->defvalbuf, defval, sizeof(opt->defvalbuf));
75 opt
190 opt_t *opt; local
[all...]
/bind-9.11.3/bin/dig/
H A Dnslookup.c650 setoption(char *opt) { argument
651 size_t l = strlen(opt);
654 ((l >= N) && (l < sizeof(A)) && (strncasecmp(opt, A, l) == 0))
658 } else if (strncasecmp(opt, "class=", 6) == 0) {
659 if (testclass(&opt[6]))
660 strlcpy(defclass, &opt[6], sizeof(defclass));
661 } else if (strncasecmp(opt, "cl=", 3) == 0) {
662 if (testclass(&opt[3]))
663 strlcpy(defclass, &opt[3], sizeof(defclass));
664 } else if (strncasecmp(opt, "typ
756 addlookup(char *opt) argument
[all...]
H A Dhost.c412 dns_rdataset_t *opt, *tsig = NULL; local
529 opt = dns_message_getopt(msg);
530 if (opt != NULL)
532 (unsigned int)((opt->ttl & 0x00ff0000) >> 16),
533 (unsigned int)opt->rdclass);
H A Ddig.c113 "Usage: dig [@global-server] [domain] [q-type] [q-class] {q-opt}\n"
114 " {global-d-opt} host [@local-server] {local-d-opt}\n"
115 " [ host [@local-server] {local-d-opt} [...]]\n", fp);
144 " q-opt is one of:\n"
159 " d-opt is of the form +keyword[=value], where keyword is:\n"
632 query->lookup->edns != -1 && msg->opt == NULL &&
1507 char opt, *value, *ptr, *ptr2, *ptr3; local
1524 * if they appear as the first character(s) of a q-opt.
1526 opt
[all...]
H A Ddighost.c681 set_nameserver(char *opt) { argument
689 if (opt == NULL)
692 result = bind9_getaddresses(opt, 0, sockaddrs,
696 opt, isc_result_totext(result));
703 srv = make_server(tmp, opt);
3729 dns_rdataset_t *opt = msg->opt; local
3732 result = dns_rdataset_first(opt);
3735 dns_rdataset_current(opt, &rdata);
3762 ednsvers(dns_rdataset_t *opt) { argument
[all...]
/bind-9.11.3/unit/atf-src/tools/
H A Dapplication.cpp170 const option& opt = (*iter); local
172 optstr += opt.m_character;
173 if (!opt.m_argument.empty())
227 const option& opt = (*iter); local
229 if (opt.m_argument.length() + 1 > coldesc)
230 coldesc = opt.m_argument.length() + 1;
234 const option& opt = (*iter); local
236 std::string tag = std::string(" -") + opt.m_character;
237 if (opt.m_argument.empty())
240 tag += " " + opt
[all...]
/bind-9.11.3/contrib/dlz/modules/bdbhpt/testing/
H A Dbdbhpt-populate.pl6 my $opt = {};
7 if (!GetOptions($opt, qw/bdb|b:s input|i:s zones|z:s help|h/)) {
12 if ($opt->{help}) {
17 my $db_file = $opt->{bdb};
23 my $input_file = $opt->{input};
29 my $zone_list = $opt->{zones};
/bind-9.11.3/bin/tests/virtual-time/
H A Dstop.pl29 my $opt = shift @ARGV;
30 if ($opt eq '--use-rndc') {
/bind-9.11.3/bin/tests/system/
H A Dstop.pl29 my $opt = shift @ARGV;
30 if ($opt eq '--use-rndc') {
/bind-9.11.3/lib/dns/
H A Ddst_parse.c469 unsigned int opt = ISC_LEXOPT_EOL; local
479 #define NEXTTOKEN(lex, opt, token) \
481 ret = isc_lex_gettoken(lex, opt, token); \
486 #define READLINE(lex, opt, token) \
488 ret = isc_lex_gettoken(lex, opt, token); \
498 NEXTTOKEN(lex, opt, &token);
506 NEXTTOKEN(lex, opt, &token);
529 READLINE(lex, opt, &token);
534 NEXTTOKEN(lex, opt, &token);
542 NEXTTOKEN(lex, opt | ISC_LEXOPT_NUMBE
[all...]
H A Dmessage.c374 m->opt = NULL;
463 if (msg->opt != NULL) {
468 INSIST(dns_rdataset_isassociated(msg->opt));
469 dns_rdataset_disassociate(msg->opt);
470 isc_mempool_put(msg->rdspool, msg->opt);
471 msg->opt = NULL;
1340 msg->opt != NULL)
1584 * Note msg->opt, msg->sig0 and msg->tsig will only be
1588 if (rdtype == dns_rdatatype_opt && msg->opt == NULL) {
1591 msg->opt
2726 dns_message_setopt(dns_message_t *msg, dns_rdataset_t *opt) argument
[all...]
H A Dcatz.c846 catz_opt_cmp(const dns_label_t *option, const char *opt) { argument
847 unsigned int l = strlen(opt);
849 memcmp(opt, option->base + 1, l - 1) == 0)
876 dns_name_t opt; local
893 dns_name_init(&opt, NULL);
894 dns_name_split(name, 1, &opt, NULL);
895 return (catz_process_zones_suboption(zone, value, &mhash, &opt));
1295 catz_opt_t opt; local
1304 opt = catz_get_option(&option);
1326 switch (opt) {
1353 catz_opt_t opt; local
[all...]
H A Ddst_api.c1517 unsigned int opt = ISC_LEXOPT_DNSMULTILINE; local
1546 #define NEXTTOKEN(lex, opt, token) { \
1547 ret = isc_lex_gettoken(lex, opt, token); \
1558 NEXTTOKEN(lex, opt, &token);
1577 NEXTTOKEN(lex, opt, &token);
1585 NEXTTOKEN(lex, opt, &token);
1592 NEXTTOKEN(lex, opt, &token);
/bind-9.11.3/unit/atf-src/atf-c++/detail/
H A Dapplication.cpp164 const option& opt = (*iter); local
166 optstr += opt.m_character;
167 if (!opt.m_argument.empty())
/bind-9.11.3/contrib/idn/idnkit-1.0-src/util/
H A DSparseMap.pm184 my %opt = @_;
185 my $name = $opt{NAME} || 'map';
405 my %opt = @_;
406 my $name = $opt{NAME} || 'map';
492 my %opt = @_;
493 my $name = $opt{NAME} || 'map';
508 if (exists $opt{MAPTYPE}) {
509 $idtype = $opt{MAPTYPE};
/bind-9.11.3/lib/dns/include/dns/
H A Dmessage.h96 #define DNS_OPT_NSID 3 /*%< NSID opt code */
97 #define DNS_OPT_CLIENT_SUBNET 8 /*%< client subnet opt code */
98 #define DNS_OPT_EXPIRE 9 /*%< EXPIRE opt code */
99 #define DNS_OPT_COOKIE 10 /*%< COOKIE opt code */
100 #define DNS_OPT_PAD 12 /*%< PAD opt code */
101 #define DNS_OPT_KEY_TAG 14 /*%< Key tag opt code */
199 dns_rdataset_t *opt; member in struct:dns_message
420 * OPT records are detected and stored in the pseudo-section "opt".
1042 dns_message_setopt(dns_message_t *msg, dns_rdataset_t *opt);
1051 *\li 'opt' i
[all...]
/bind-9.11.3/bin/named/include/named/
H A Dclient.h115 dns_rdataset_t * opt; member in struct:ns_client
191 #define NS_CLIENTATTR_WANTOPT 0x2000 /*%< add opt to reply */
418 dns_rdataset_t **opt);
/bind-9.11.3/bin/named/
H A Dclient.c581 if (client->opt != NULL) {
582 INSIST(dns_rdataset_isassociated(client->opt));
583 dns_rdataset_disassociate(client->opt);
585 &client->opt);
719 if (client->opt != NULL) {
720 INSIST(dns_rdataset_isassociated(client->opt));
721 dns_rdataset_disassociate(client->opt);
722 dns_message_puttemprdataset(client->message, &client->opt);
1079 &client->opt);
1120 if (client->opt !
1549 ns_client_addopt(ns_client_t *client, dns_message_t *message, dns_rdataset_t **opt) argument
2111 process_opt(ns_client_t *client, dns_rdataset_t *opt) argument
2230 dns_rdataset_t *opt; local
[all...]
/bind-9.11.3/
H A Dltmain.sh1062 opt="$1"
1064 case $opt in
1101 test $# = 0 && func_missing_arg $opt && break
1109 *) func_error "invalid argument for $opt"
1118 func_append preserve_args " $opt"
1122 func_append preserve_args " $opt"
1126 func_append preserve_args " $opt"
1130 func_append preserve_args " $opt"
1135 func_append preserve_args " $opt"
1139 test $# = 0 && func_missing_arg $opt
[all...]
/bind-9.11.3/bin/delv/
H A Ddelv.c153 "Usage: delv [@server] {q-opt} {d-opt} [domain] [q-type] [q-class]\n"
157 " q-opt is one of:\n"
171 " d-opt is of the form +keyword[=value], where keyword is:\n"
1180 char opt, *value; local
1197 * if they appear as the first character(s) of a q-opt.
1199 opt = option[0];
1200 switch (opt) {
1241 opt = option[0];
1251 switch (opt) {
[all...]
/bind-9.11.3/contrib/idn/idnkit-1.0-src/tools/idnconv/
H A Didnconv.c156 #define OPT_MATCH(opt) (strcmp(*av, opt) == 0)
/bind-9.11.3/bin/dig/include/dig/
H A Ddig.h376 set_nameserver(char *opt);
/bind-9.11.3/bin/tools/
H A Dmdig.c719 fputs("Usage: mdig @server {global-opt} host\n"
720 " {local-opt} [ host {local-opt} [...]]\n",
731 fputs("Usage: mdig @server {global-opt} host\n"
732 " {local-opt} [ host {local-opt} [...]]\n",
736 " anywhere opt is one of:\n"
740 " global opt is one of:\n"
768 " local opt is one of:\n"
1529 char opt; local
[all...]
/bind-9.11.3/contrib/dlz/bin/dlzbdb/
H A Ddlzbdb.c526 unsigned int opt = local
547 result = isc_lex_gettoken(lexer, opt, &token);

Completed in 181 milliseconds

12