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

/bind-9.11.3/lib/dns/include/dns/
H A Dmessage.h270 dns_message_create(isc_mem_t *mctx, unsigned int intent, dns_message_t **msgp);
283 *\li 'intent' must be one of DNS_MESSAGE_INTENTPARSE or
296 dns_message_reset(dns_message_t *msg, unsigned int intent);
306 * The intended next use of the message will be 'intent'.
312 *\li 'intent' is DNS_MESSAGE_INTENTPARSE or DNS_MESSAGE_INTENTRENDER
618 *\li 'msg' be a valid message with rendering intent.
1003 *\li 'msg' is a valid message with parsing intent, and contains a query.
1007 *\li The message will have a rendering intent. If 'want_question_section'
1048 *\li 'msg' is a valid message with rendering intent
1096 *\li 'msg' is a valid message with rendering intent,
[all...]
/bind-9.11.3/lib/dns/
H A Dmessage.c694 dns_message_create(isc_mem_t *mctx, unsigned int intent, dns_message_t **msgp) argument
704 REQUIRE(intent == DNS_MESSAGE_INTENTPARSE
705 || intent == DNS_MESSAGE_INTENTRENDER);
717 m->from_to_wire = intent;
786 dns_message_reset(dns_message_t *msg, unsigned int intent) { argument
788 REQUIRE(intent == DNS_MESSAGE_INTENTPARSE
789 || intent == DNS_MESSAGE_INTENTRENDER);
792 msg->from_to_wire = intent;

Completed in 25 milliseconds