Searched refs:intent (Results 1 - 2 of 2) sorted by relevance

/bind-9.6-ESV-R11/lib/dns/include/dns/
H A Dmessage.h264 dns_message_create(isc_mem_t *mctx, unsigned int intent, dns_message_t **msgp);
277 *\li 'intent' must be one of DNS_MESSAGE_INTENTPARSE or
290 dns_message_reset(dns_message_t *msg, unsigned int intent);
300 * The intended next use of the message will be 'intent'.
306 *\li 'intent' is DNS_MESSAGE_INTENTPARSE or DNS_MESSAGE_INTENTRENDER
605 *\li 'msg' be a valid message with rendering intent.
990 *\li 'msg' is a valid message with parsing intent, and contains a query.
994 *\li The message will have a rendering intent. If 'want_question_section'
1035 *\li 'msg' is a valid message with rendering intent
1083 *\li 'msg' is a valid message with rendering intent,
[all...]
/bind-9.6-ESV-R11/lib/dns/
H A Dmessage.c707 dns_message_create(isc_mem_t *mctx, unsigned int intent, dns_message_t **msgp) argument
717 REQUIRE(intent == DNS_MESSAGE_INTENTPARSE
718 || intent == DNS_MESSAGE_INTENTRENDER);
730 m->from_to_wire = intent;
795 dns_message_reset(dns_message_t *msg, unsigned int intent) { argument
797 REQUIRE(intent == DNS_MESSAGE_INTENTPARSE
798 || intent == DNS_MESSAGE_INTENTRENDER);
801 msg->from_to_wire = intent;

Completed in 19 milliseconds