1.. highlight:: c 2 3.. _krb5-responder-context-struct: 4 5krb5_responder_context 6====================== 7 8.. 9.. c:type:: krb5_responder_context 10.. 11 12A container for a set of preauthentication questions and answers. 13 14A responder context is supplied by the krb5 authentication system to a krb5_responder_fn callback. It contains a list of questions and can receive answers. Questions contained in a responder context can be listed using krb5_responder_list_questions(), retrieved using krb5_responder_get_challenge(), or answered using krb5_responder_set_answer(). The form of a question's challenge and answer depend on the question name. 15 16 17Declaration 18------------ 19 20typedef struct krb5_responder_context_st\* krb5_responder_context 21 22 23