1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
krb5_appdefault_boolean - Retrieve a boolean value from the appdefaults section of krb5.conf.
===============================================================================================
..
.. c:function:: void krb5_appdefault_boolean(krb5_context context, const char * appname, const krb5_data * realm, const char * option, int default_value, int * ret_value)
..
:param:
**[in]** **context** - Library context
**[in]** **appname** - Application name
**[in]** **realm** - Realm name
**[in]** **option** - Option to be checked
**[in]** **default_value** - Default value to return if no match is found
**[out]** **ret_value** - Boolean value of *option*
..
..
This function gets the application defaults for *option* based on the given *appname* and/or *realm* .
..
.. seealso::
:c:func:`krb5_appdefault_string()`
|