Searched defs:query (Results 1 - 25 of 26) sorted by relevance

12

/bind-9.11.3/lib/dns/include/dns/
H A Ddnstap.h93 isc_boolean_t query; member in struct:dns_dtdata
248 * Parameters are: 'qaddr' (query address, i.e, the address of the
249 * query initiator); 'raddr' (response address, i.e., the address of
250 * the query responder); 'tcp' (boolean indicating whether the transaction
252 * uncompressed wire format), 'qtime' and 'rtime' (query and response
H A Dmessage.h250 isc_region_t query; member in struct:dns_message
999 * Start formatting a reply to the query in 'msg'.
1003 *\li 'msg' is a valid message with parsing intent, and contains a query.
1008 * is true, the message opcode is query or notify, and the question
1091 * query or parsing a response. The key (if non-NULL) is attached to, and
1121 * Indicates that 'querytsig' is the TSIG from the signed query for which
1142 * Gets the tsig from the TSIG from the signed query 'msg'. This is also used
1249 * verified, but the query was rejected by
/bind-9.11.3/bin/tests/system/chain/ans4/
H A Dans.py22 import dns, dns.message, dns.query namespace
46 # to the query. each RR in the answer set has a corresponding
106 # Respond to a DNS query.
128 print ('query: ' + qname + '/' + typename)
264 # the main loop, listening for queries on the query channel or commands
/bind-9.11.3/bin/tests/system/tkey/
H A Dkeydelete.c65 dns_message_t *query, *response; local
77 query = reqev->ev_arg;
94 result = dns_tkey_processdeleteresponse(query, response, ring);
97 dns_message_destroy(&query);
110 dns_message_t *query; local
120 query = NULL;
121 result = dns_message_create(mctx, DNS_MESSAGE_INTENTRENDER, &query);
124 result = dns_tkey_builddeletequery(query, tsigkey);
128 result = dns_request_create(requestmgr, query, &address,
130 task, recvquery, query,
[all...]
H A Dkeycreate.c70 dns_message_t *query, *response; local
85 query = reqev->ev_arg;
102 result = dns_tkey_processdhresponse(query, response, ourkey, &nonce,
118 dns_message_destroy(&query);
138 dns_message_t *query; local
178 query = NULL;
179 result = dns_message_create(mctx, DNS_MESSAGE_INTENTRENDER, &query);
182 result = dns_tkey_builddhquery(query, ourkey,
188 result = dns_request_create(requestmgr, query, &address,
190 TIMEOUT, task, recvquery, query,
[all...]
/bind-9.11.3/bin/tests/
H A Dzone_test.c148 query(void) { function
295 query();
H A Dsig0_test.c128 dns_message_t *query; local
135 query = NULL;
136 result = dns_message_create(mctx, DNS_MESSAGE_INTENTRENDER, &query);
138 result = dns_message_setsig0key(query, key);
141 result = dns_message_gettemprdataset(query, &question);
145 result = dns_message_gettempname(query, &qname);
154 dns_message_addname(query, qname, DNS_SECTION_QUESTION);
160 result = dns_message_renderbegin(query, &cctx, &qbuffer);
162 result = dns_message_rendersection(query, DNS_SECTION_QUESTION, 0);
164 result = dns_message_rendersection(query, DNS_SECTION_ANSWE
[all...]
/bind-9.11.3/bin/win32/BINDInstall/
H A DVersionInfo.cpp169 DWORD query = AfxMessageBox(msg, MB_YESNO); local
170 if(query == IDNO)
/bind-9.11.3/contrib/dlz/drivers/
H A Ddlz_mysql_driver.c116 * string is not available). The type of query we want to run
117 * is indicated by the query flag, and the dbdata object is passed
119 * The function will construct and run the query, hopefully getting
125 const char *client, unsigned int query,
135 if (query != COUNTZONE)
149 /* what type of query are we going to run? */
150 switch(query) {
153 * if the query was not passed in from the config file
182 "No query specified for findzone. "
183 "Findzone requires a query");
124 mysql_get_resultset(const char *zone, const char *record, const char *client, unsigned int query, void *dbdata, MYSQL_RES **rs) argument
[all...]
H A Ddlz_postgres_driver.c262 * string is not available). The type of query we want to run
263 * is indicated by the query flag, and the dbdata object is passed
267 * The function will construct the query and obtain an available
268 * database instance (DBI). It will then run the query and hopefully
277 const char *client, unsigned int query,
320 "%d Got DBI - checking query", dlz_thread_num);
329 /* what type of query are we going to run? */
330 switch(query) {
333 * if the query was not passed in from the config file
362 "No query specifie
276 postgres_get_resultset(const char *zone, const char *record, const char *client, unsigned int query, void *dbdata, PGresult **rs) argument
[all...]
H A Ddlz_ldap_driver.c132 "%s query is not a valid LDAP URL", msg);
141 "parsing %s query failed", msg);
149 "%s query must specify at least "
159 "%s query must not specify a host", msg);
167 "%s query must not specify a port", msg);
175 "%s query must specify a search base", msg);
547 * string is not available). The type of query we want to run
548 * is indicated by the query flag, and the dbdata object is passed
552 * The function will construct the query and obtain an available
553 * database instance (DBI). It will then run the query an
557 ldap_get_results(const char *zone, const char *record, const char *client, unsigned int query, void *dbdata, void *ptr) argument
[all...]
H A Ddlz_odbc_driver.c455 * string is not available). The type of query we want to run
456 * is indicated by the query flag, and the dbdata object is passed
460 * The function will construct the query and obtain an available
461 * database instance (DBI). It will then run the query and hopefully
472 const char *client, unsigned int query,
506 /* what type of query are we going to run? */
507 switch(query) {
510 * if the query was not passed in from the config file
539 "No query specified for findzone. "
540 "Findzone requires a query");
471 odbc_get_resultset(const char *zone, const char *record, const char *client, unsigned int query, void *dbdata, dbinstance_t **r_dbi) argument
[all...]
/bind-9.11.3/bin/tests/system/pipelined/
H A Dpipequeries.c67 dns_message_t *query, *response; local
81 query = reqev->ev_arg;
112 dns_message_destroy(&query);
/bind-9.11.3/contrib/dlz/modules/ldap/
H A Ddlz_ldap_dynamic.c135 "%s query is not a valid LDAP URL", msg);
142 db->log(ISC_LOG_ERROR, "parsing %s query failed", msg);
149 "%s query must specify at least "
157 "%s query must not specify a host", msg);
164 "%s query must not specify a port", msg);
171 "%s query must specify a search base", msg);
522 * string is not available). The type of query we want to run
523 * is indicated by the query flag, and the dbdata object is passed
527 * The function will construct the query and obtain an available
528 * database instance (DBI). It will then run the query an
532 ldap_get_results(const char *zone, const char *record, const char *client, unsigned int query, void *dbdata, void *ptr) argument
[all...]
/bind-9.11.3/contrib/dlz/modules/mysql/
H A Ddlz_mysql_dynamic.c219 * string is not available). The type of query we want to run
220 * is indicated by the query flag, and the dbdata object is passed
222 * The function will construct and run the query, hopefully getting
227 const char *client, unsigned int query,
254 /* what type of query are we going to run? */
255 switch(query) {
277 "No query specified for findzone. "
278 "Findzone requires a query");
292 "No query specified for lookup. "
293 "Lookup requires a query");
226 mysql_get_resultset(const char *zone, const char *record, const char *client, unsigned int query, void *dbdata, MYSQL_RES **rs) argument
[all...]
/bind-9.11.3/bin/tests/dst/
H A Dgsstest.c113 if (strcmp(buf, "query") == 0) {
128 dns_message_t *query = NULL, *response = NULL; local
140 query = reqev->ev_arg;
169 if (query != NULL)
170 dns_message_destroy(&query);
241 printf("Submitting query:\n");
264 dns_message_t *query = NULL, *response = NULL; local
275 query = reqev->ev_arg;
300 result = dns_tkey_processgssresponse(query, response,
326 if (query !
346 dns_message_t *query; local
[all...]
/bind-9.11.3/contrib/dlz/modules/sqlite3/
H A Ddlz_sqlite3_dynamic.c98 char **pazResult; /* Result of the query */
241 * string is not available). The type of query we want to run
242 * is indicated by the query flag, and the dbdata object is passed
244 * The function will construct and run the query, hopefully getting
249 const char *client, unsigned int query,
261 if ((query == COUNTZONE && rsp != NULL) ||
262 (query != COUNTZONE && (rsp == NULL || *rsp != NULL)))
285 /* what type of query are we going to run? */
286 switch(query) {
308 "No query specifie
248 sqlite3_get_resultset(const char *zone, const char *record, const char *client, unsigned int query, void *dbdata, sqlite3_res_t **rsp) argument
[all...]
/bind-9.11.3/bin/dig/
H A Dhost.c143 " -c specifies query class for non-IN data\n"
152 " -s a SERVFAIL response should stop query\n"
153 " -t specifies the query type\n"
159 " -4 use IPv4 query transport only\n"
160 " -6 use IPv6 query transport only\n", stderr);
170 received(int bytes, isc_sockaddr_t *from, dig_query_t *query) { argument
178 diff = (int) isc_time_microdiff(&now, &query->time_sent);
194 dig_query_t *query)
214 if (query->lookup->identify_previous_line) {
216 query
193 say_message(dns_name_t *name, const char *msg, dns_rdata_t *rdata, dig_query_t *query) argument
239 printsection(dns_message_t *msg, dns_section_t sectionid, const char *section_name, isc_boolean_t headers, dig_query_t *query) argument
410 printmessage(dig_query_t *query, dns_message_t *msg, isc_boolean_t headers) argument
[all...]
H A Ddig.c145 " -4 (use IPv4 query transport only)\n"
146 " -6 (use IPv6 query transport only)\n"
148 " -c class (specify query class)\n"
154 " -q name (specify query name)\n"
155 " -t type (specify query type)\n"
160 " +[no]aaflag (Set AA flag in query (+[no]aaflag))\n"
161 " +[no]aaonly (Set AA flag in query (+[no]aaflag))\n"
163 " +[no]adflag (Set AD flag in query (default on))\n"
170 " +[no]cdflag (Set checking disabled flag in query)\n"
188 " +[no]header-only (Send query withou
243 received(int bytes, isc_sockaddr_t *from, dig_query_t *query) argument
334 say_message(dns_rdata_t *rdata, dig_query_t *query, isc_buffer_t *buf) argument
378 short_answer(dns_message_t *msg, dns_messagetextflag_t flags, isc_buffer_t *buf, dig_query_t *query) argument
508 printmessage(dig_query_t *query, dns_message_t *msg, isc_boolean_t headers) argument
[all...]
H A Dnslookup.c249 printsection(dig_query_t *query, dns_message_t *msg, isc_boolean_t headers, argument
257 UNUSED(query);
316 detailsection(dig_query_t *query, dns_message_t *msg, isc_boolean_t headers, argument
324 UNUSED(query);
402 received(int bytes, isc_sockaddr_t *from, dig_query_t *query) argument
406 UNUSED(query);
441 printmessage(dig_query_t *query, dns_message_t *msg, isc_boolean_t headers) { argument
449 if(!default_lookups || query->lookup->rdtype == dns_rdatatype_a) {
450 isc_sockaddr_format(&query->sockaddr, servtext, sizeof(servtext));
451 printf("Server:\t\t%s\n", query
[all...]
H A Ddighost.c285 dns_name_t chase_name; /* the query name */
361 (*dighost_printmessage)(dig_query_t *query, dns_message_t *msg,
365 (*dighost_received)(int bytes, isc_sockaddr_t *from, dig_query_t *query);
382 send_udp(dig_query_t *query);
388 launch_next_query(dig_query_t *query, isc_boolean_t include_question);
593 * This is little more than a linked list of servers to query in hopes
759 * linked lists: the server list (servers to query) and the query list
902 * the query list, since it will be regenerated by the setup_lookup()
1767 * Clear out a query whe
1771 clear_query(dig_query_t *query) argument
2037 followup_lookup(dns_message_t *msg, dig_query_t *query, dns_section_t section) argument
2337 dig_query_t *query; local
2847 dig_query_t *query, *next; local
2895 dig_query_t *query, *next; local
2915 bringup_timer(dig_query_t *query, unsigned int default_timeout) argument
2946 force_timeout(dig_query_t *query) argument
2979 send_tcp_connect(dig_query_t *query) argument
3116 send_udp(dig_query_t *query) argument
3215 dig_query_t *query = NULL, *cq; local
3287 dig_query_t *query = NULL; local
3374 launch_next_query(dig_query_t *query, isc_boolean_t include_question) argument
3444 dig_query_t *query = NULL, *next; local
3534 check_for_more_data(dig_query_t *query, dns_message_t *msg, isc_socketevent_t *sevent) argument
3773 dig_query_t *query = NULL; local
4418 dig_query_t *query; local
[all...]
/bind-9.11.3/bin/named/include/named/
H A Dclient.h71 #include <named/query.h>
122 ns_query_t query; member in struct:ns_client
198 * that a query had the CD bit set.
330 * allow-query, allow-transfer, etc. It is not appropriate
390 * Kill the oldest recursive query (recursing list head).
/bind-9.11.3/lib/dns/
H A Drequest.c70 isc_buffer_t *query; member in struct:dns_request
429 isc_buffer_usedregion(request->query, &r);
472 request->query = NULL;
844 result = isc_buffer_allocate(mctx, &request->query,
849 isc_buffer_putuint16(request->query, (isc_uint16_t)r.length);
850 result = isc_buffer_copyregion(request->query, &r);
855 isc_buffer_usedregion(request->query, &r);
1066 result = req_render(message, &request->query, options, mctx);
1529 if (request->query != NULL)
1530 isc_buffer_free(&request->query);
[all...]
/bind-9.11.3/bin/tools/
H A Dmdig.c115 struct query { struct
139 ISC_LINK(struct query) link;
141 static struct query default_query;
142 static ISC_LIST(struct query) queries;
209 dns_message_t *query = NULL, *response = NULL; local
220 query = reqev->ev_arg;
473 if (query != NULL)
474 dns_message_destroy(&query);
512 sendquery(struct query *query, isc_task_ argument
698 struct query *query = (struct query *)event->ev_arg; local
856 save_opt(struct query *query, char *code, char *value) argument
1035 plus_option(char *option, struct query *query, isc_boolean_t global) argument
1526 dash_option(const char *option, char *next, struct query *query, isc_boolean_t global, isc_boolean_t *setname) argument
1678 struct query *query; local
1750 struct query *query = NULL; local
1896 struct query *query; local
[all...]
/bind-9.11.3/contrib/dlz/modules/mysqldyn/
H A Ddlz_mysqldyn_mod.c363 * Construct a query string using a variable number of arguments, and
381 char *query = NULL; local
443 query = malloc(len + 1);
444 if (query == NULL)
447 *query = '\0';
452 strcat(query, item->arg);
474 return (query);
571 db_execute(mysql_data_t *state, mysql_instance_t *dbi, const char *query) { argument
578 ret = mysql_real_query(dbi->sock, query, strlen(query));
595 db_query(mysql_data_t *state, mysql_instance_t *dbi, const char *query) argument
726 char *query; local
1040 char *query; local
1073 char *query; local
1218 char *query; local
1265 char *query; local
1359 char *query; local
1569 char *new_name, *query; local
1630 char *new_name, *query; local
1679 char *new_name, *query; local
[all...]

Completed in 77 milliseconds

12