aboutsummaryrefslogtreecommitdiff
path: root/lib/krb5/krb5_appdefault.cat3
diff options
context:
space:
mode:
Diffstat (limited to 'lib/krb5/krb5_appdefault.cat3')
-rw-r--r--lib/krb5/krb5_appdefault.cat343
1 files changed, 21 insertions, 22 deletions
diff --git a/lib/krb5/krb5_appdefault.cat3 b/lib/krb5/krb5_appdefault.cat3
index 5000115c20a3..41674112d170 100644
--- a/lib/krb5/krb5_appdefault.cat3
+++ b/lib/krb5/krb5_appdefault.cat3
@@ -1,32 +1,31 @@
-
KRB5_APPDEFAULT(3) BSD Library Functions Manual KRB5_APPDEFAULT(3)
-NNAAMMEE
- kkrrbb55__aappppddeeffaauulltt__bboooolleeaann, kkrrbb55__aappppddeeffaauulltt__ssttrriinngg, kkrrbb55__aappppddeeffaauulltt__ttiimmee --
+NAME
+ krb5_appdefault_boolean, krb5_appdefault_string, krb5_appdefault_time --
get application configuration value
-LLIIBBRRAARRYY
+LIBRARY
Kerberos 5 Library (libkrb5, -lkrb5)
-SSYYNNOOPPSSIISS
- ##iinncclluuddee <<kkrrbb55..hh>>
+SYNOPSIS
+ #include <krb5.h>
- _v_o_i_d
- kkrrbb55__aappppddeeffaauulltt__bboooolleeaann(_k_r_b_5___c_o_n_t_e_x_t _c_o_n_t_e_x_t, _c_o_n_s_t _c_h_a_r _*_a_p_p_n_a_m_e,
- _k_r_b_5___r_e_a_l_m _r_e_a_l_m, _c_o_n_s_t _c_h_a_r _*_o_p_t_i_o_n, _k_r_b_5___b_o_o_l_e_a_n _d_e_f___v_a_l,
- _k_r_b_5___b_o_o_l_e_a_n _*_r_e_t___v_a_l);
+ void
+ krb5_appdefault_boolean(krb5_context context, const char *appname,
+ krb5_realm realm, const char *option, krb5_boolean def_val,
+ krb5_boolean *ret_val);
- _v_o_i_d
- kkrrbb55__aappppddeeffaauulltt__ssttrriinngg(_k_r_b_5___c_o_n_t_e_x_t _c_o_n_t_e_x_t, _c_o_n_s_t _c_h_a_r _*_a_p_p_n_a_m_e,
- _k_r_b_5___r_e_a_l_m _r_e_a_l_m, _c_o_n_s_t _c_h_a_r _*_o_p_t_i_o_n, _c_o_n_s_t _c_h_a_r _*_d_e_f___v_a_l,
- _c_h_a_r _*_*_r_e_t___v_a_l);
+ void
+ krb5_appdefault_string(krb5_context context, const char *appname,
+ krb5_realm realm, const char *option, const char *def_val,
+ char **ret_val);
- _v_o_i_d
- kkrrbb55__aappppddeeffaauulltt__ttiimmee(_k_r_b_5___c_o_n_t_e_x_t _c_o_n_t_e_x_t, _c_o_n_s_t _c_h_a_r _*_a_p_p_n_a_m_e,
- _k_r_b_5___r_e_a_l_m _r_e_a_l_m, _c_o_n_s_t _c_h_a_r _*_o_p_t_i_o_n, _t_i_m_e___t _d_e_f___v_a_l,
- _t_i_m_e___t _*_r_e_t___v_a_l);
+ void
+ krb5_appdefault_time(krb5_context context, const char *appname,
+ krb5_realm realm, const char *option, time_t def_val,
+ time_t *ret_val);
-DDEESSCCRRIIPPTTIIOONN
+DESCRIPTION
These functions get application defaults from the appdefaults section of
the krb5.conf(5) configuration file. These defaults can be specified per
application, and/or per realm.
@@ -47,11 +46,11 @@ DDEESSCCRRIIPPTTIIOONN
option = value
}
option = value
- _a_p_p_n_a_m_e is the name of the application, and _r_e_a_l_m is the realm name. If
- the realm is omitted it will not be used for resolving values. _d_e_f___v_a_l
+ appname is the name of the application, and realm is the realm name. If
+ the realm is omitted it will not be used for resolving values. def_val
is the value to return if no value is found in krb5.conf(5).
-SSEEEE AALLSSOO
+SEE ALSO
krb5_config(3), krb5.conf(5)
HEIMDAL July 25, 2000 HEIMDAL