Home
last modified time | relevance | path

Searched refs:questions (Results 1 – 25 of 90) sorted by relevance

1234

/freebsd/crypto/krb5/src/lib/krb5/krb/
H A Dresponse_items.c32 char **questions; member
60 free(ri->questions[i]); in k5_response_items_reset()
61 free(ri->questions); in k5_response_items_reset()
62 ri->questions = NULL; in k5_response_items_reset()
88 return (const char * const *)ri->questions; in k5_response_items_list_questions()
100 if (strcmp(ri->questions[i], question) == 0) in find_question()
118 tmp = realloc(ri->questions, size); in push_question()
121 ri->questions = tmp; in push_question()
122 ri->questions[ri->count] = NULL; in push_question()
123 ri->questions[ri->count + 1] = NULL; in push_question()
[all …]
/freebsd/contrib/ntp/sntp/libevent/sample/
H A Ddns-example.c118 if (req->questions[i]->type == EVDNS_TYPE_A && in evdns_server_callback()
119 req->questions[i]->dns_question_class == EVDNS_CLASS_INET) { in evdns_server_callback()
120 printf(" -- replying for %s (A)\n", req->questions[i]->name); in evdns_server_callback()
121 r = evdns_server_request_add_a_reply(req, req->questions[i]->name, in evdns_server_callback()
125 } else if (req->questions[i]->type == EVDNS_TYPE_PTR && in evdns_server_callback()
126 req->questions[i]->dns_question_class == EVDNS_CLASS_INET) { in evdns_server_callback()
127 printf(" -- replying for %s (PTR)\n", req->questions[i]->name); in evdns_server_callback()
128 r = evdns_server_request_add_ptr_reply(req, NULL, req->questions[i]->name, in evdns_server_callback()
133 printf(" -- skipping %s [%d %d]\n", req->questions[i]->name, in evdns_server_callback()
134 req->questions[i]->type, req->questions[i]->dns_question_class); in evdns_server_callback()
/freebsd/contrib/libevent/sample/
H A Ddns-example.c118 if (req->questions[i]->type == EVDNS_TYPE_A && in evdns_server_callback()
119 req->questions[i]->dns_question_class == EVDNS_CLASS_INET) { in evdns_server_callback()
120 printf(" -- replying for %s (A)\n", req->questions[i]->name); in evdns_server_callback()
121 r = evdns_server_request_add_a_reply(req, req->questions[i]->name, in evdns_server_callback()
125 } else if (req->questions[i]->type == EVDNS_TYPE_PTR && in evdns_server_callback()
126 req->questions[i]->dns_question_class == EVDNS_CLASS_INET) { in evdns_server_callback()
127 printf(" -- replying for %s (PTR)\n", req->questions[i]->name); in evdns_server_callback()
128 r = evdns_server_request_add_ptr_reply(req, NULL, req->questions[i]->name, in evdns_server_callback()
133 printf(" -- skipping %s [%d %d]\n", req->questions[i]->name, in evdns_server_callback()
134 req->questions[i]->type, req->questions[i]->dns_question_class); in evdns_server_callback()
/freebsd/share/skel/
H A Ddot.mail_aliases9 # alias freebsd-questions freebsd-questions@FreeBSD.org
/freebsd/crypto/openssh/contrib/cygwin/
H A DREADME25 --yes -y Answer all questions with "yes" automatically.
26 --no -n Answer all questions with "no" automatically.
56 --yes -y Answer all questions with "yes" automatically.
57 --no -n Answer all questions with "no" automatically.
/freebsd/usr.bin/login/
H A Dmotd.template8 Questions List: https://www.FreeBSD.org/lists/questions/
16 Please include that output and any error messages when posting questions.
/freebsd/contrib/dialog/package/debian/
H A Dcontrol13 Dialog is a program that will let you present a variety of questions or
30 Dialog is a program that will let you present a variety of questions or
/freebsd/crypto/openssl/
H A DSUPPORT.md7 If you have general questions about using OpenSSL
12 other OpenSSL users. Here you will most likely get the answer to your questions.
69 - [openssl-users] for general questions about using the OpenSSL software
/freebsd/sys/contrib/dev/athk/
H A DKconfig13 questions about these cards. If you say Y, you will be asked for
14 your specific card in the following questions.
/freebsd/contrib/ntp/sntp/libevent/include/event2/
H A Ddns_struct.h59 struct evdns_server_question **questions; member
/freebsd/contrib/libevent/include/event2/
H A Ddns_struct.h59 struct evdns_server_question **questions; member
/freebsd/contrib/netbsd-tests/fs/nfs/nfsservice/
H A DREADME16 questions? ==> pooka@netbsd.org
/freebsd/contrib/libcbor/
H A DCONTRIBUTING.md9 **Bug reports and questions:** Bug reports and specific technical questions are always welcome. Fee…
/freebsd/contrib/tcsh/
H A DREADME.md16 Comments, questions, etc. (even flames) are welcome via email to
/freebsd/contrib/googletest/docs/
H A Dindex.md22 questions.
/freebsd/sys/dev/hpt27xx/
H A DREADME204 If you have questions about installing or using your HighPoint product,
206 most of your questions here. If you need further assistance, please
210 answers to common questions, and other topics. The Web Site is
/freebsd/sys/dev/hptmv/
H A Dreadme.txt208 If you have questions about installing or using your HighPoint product,
210 most of your questions here. If you need further assistance, please
214 answers to common questions, and other topics. The Web Site is
/freebsd/contrib/ntp/sntp/libevent/
H A Devdns.c1041 u16 trans_id, questions, answers, authority, additional, datalength; in reply_parse() local
1052 GET16(questions); in reply_parse()
1084 for (i = 0; i < questions; ++i) { in reply_parse()
1240 u16 trans_id, flags, questions, answers, authority, additional; in request_parse() local
1248 GET16(questions); in request_parse()
1269 server_req->base.questions = mm_calloc(sizeof(struct evdns_server_question *), questions); in request_parse()
1270 if (server_req->base.questions == NULL) in request_parse()
1273 for (i = 0; i < questions; ++i) { in request_parse()
1288 server_req->base.questions[server_req->base.nquestions++] = q; in request_parse()
1306 if (server_req->base.questions) { in request_parse()
[all …]
/freebsd/contrib/libevent/
H A Devdns.c1041 u16 trans_id, questions, answers, authority, additional, datalength; in reply_parse() local
1052 GET16(questions); in reply_parse()
1084 for (i = 0; i < questions; ++i) { in reply_parse()
1240 u16 trans_id, flags, questions, answers, authority, additional; in request_parse() local
1248 GET16(questions); in request_parse()
1269 server_req->base.questions = mm_calloc(sizeof(struct evdns_server_question *), questions); in request_parse()
1270 if (server_req->base.questions == NULL) in request_parse()
1273 for (i = 0; i < questions; ++i) { in request_parse()
1288 server_req->base.questions[server_req->base.nquestions++] = q; in request_parse()
1306 if (server_req->base.questions) { in request_parse()
[all …]
/freebsd/contrib/dialog/
H A Ddialog.lsm6 of questions or display messages in nice looking color
/freebsd/sys/dev/hptnr/
H A DREADME207 If you have questions about installing or using your HighPoint product,
209 most of your questions here. If you need further assistance, please
213 answers to common questions, and other topics. The Web Site is
/freebsd/lib/libc/db/
H A DREADME13 Email questions may be addressed to Keith Bostic at bostic@cs.berkeley.edu.
/freebsd/crypto/krb5/src/plugins/kdb/db2/libdb2/
H A DREADME.db215 Email questions may be addressed to dbinfo@eecs.harvard.edu.
/freebsd/contrib/file/magic/Magdir/
H A Dblender6 # Native format rule v1.2. For questions use the developers list
/freebsd/contrib/ntp/sntp/libevent/test/
H A Dregress_dns.c242 const int qtype = req->questions[i]->type; in dns_server_request_cb()
243 const int qclass = req->questions[i]->dns_question_class; in dns_server_request_cb()
244 const char *qname = req->questions[i]->name; in dns_server_request_cb()
637 question = req->questions[0]->name; in search_cancel_server_cb()
710 question = req->questions[0]->name; in fail_server_cb()
1077 const int qtype = req->questions[i]->type; in be_getaddrinfo_server_cb()
1078 const int qclass = req->questions[i]->dns_question_class; in be_getaddrinfo_server_cb()
1079 const char *qname = req->questions[i]->name; in be_getaddrinfo_server_cb()
1832 evdns_server_request_add_a_reply(req, req->questions[0]->name, 1, in gaic_server_cb()

1234