No empty .Rs/.Re
[netbsd-mini2440.git] / crypto / dist / heimdal / lib / krb5 / krb5_appdefault.3
blobf32d7d9b411396f7eb9398ec199ff50f739226af
1 .\" Copyright (c) 2000 Kungliga Tekniska Högskolan
2 .\" (Royal Institute of Technology, Stockholm, Sweden).
3 .\" All rights reserved.
4 .\"
5 .\" Redistribution and use in source and binary forms, with or without
6 .\" modification, are permitted provided that the following conditions
7 .\" are met:
8 .\"
9 .\" 1. Redistributions of source code must retain the above copyright
10 .\"    notice, this list of conditions and the following disclaimer.
11 .\"
12 .\" 2. Redistributions in binary form must reproduce the above copyright
13 .\"    notice, this list of conditions and the following disclaimer in the
14 .\"    documentation and/or other materials provided with the distribution.
15 .\"
16 .\" 3. Neither the name of the Institute nor the names of its contributors
17 .\"    may be used to endorse or promote products derived from this software
18 .\"    without specific prior written permission.
19 .\"
20 .\" THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
21 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
24 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 .\" SUCH DAMAGE.
31 .\"
32 .\" $Heimdal: krb5_appdefault.3 12329 2003-05-26 14:09:04Z lha $
33 .\" $NetBSD$
34 .\"
35 .Dd July 25, 2000
36 .Dt KRB5_APPDEFAULT 3
37 .Os
38 .Sh NAME
39 .Nm krb5_appdefault_boolean ,
40 .Nm krb5_appdefault_string ,
41 .Nm krb5_appdefault_time
42 .Nd get application configuration value
43 .Sh LIBRARY
44 Kerberos 5 Library (libkrb5, -lkrb5)
45 .Sh SYNOPSIS
46 .In krb5/krb5.h
47 .Ft void
48 .Fn krb5_appdefault_boolean "krb5_context context" "const char *appname" "krb5_realm realm" "const char *option" "krb5_boolean def_val" "krb5_boolean *ret_val"
49 .Ft void
50 .Fn krb5_appdefault_string "krb5_context context" "const char *appname" "krb5_realm realm" "const char *option" "const char *def_val" "char **ret_val"
51 .Ft void
52 .Fn krb5_appdefault_time "krb5_context context" "const char *appname" "krb5_realm realm" "const char *option" "time_t def_val" "time_t *ret_val"
53 .Sh DESCRIPTION
54 These functions get application defaults from the
55 .Dv appdefaults
56 section of the
57 .Xr krb5.conf 5
58 configuration file. These defaults can be specified per application,
59 and/or per realm.
60 .Pp
61 These values will be looked for in
62 .Xr krb5.conf 5 ,
63 in order of descending importance.
64 .Bd -literal -offset indent
65 [appdefaults]
66         appname = {
67                 realm = {
68                         option = value
69                 }
70         }
71         appname = {
72                 option = value
73         }
74         realm = {
75                 option = value
76         }
77         option = value
78 .Ed
79 .Fa appname
80 is the name of the application, and
81 .Fa realm
82 is the realm name. If the realm is omitted it will not be used for
83 resolving values.
84 .Fa def_val
85 is the value to return if no value is found in
86 .Xr krb5.conf 5 .
87 .Sh SEE ALSO
88 .Xr krb5_config 3 ,
89 .Xr krb5.conf 5