No empty .Rs/.Re
[netbsd-mini2440.git] / crypto / dist / heimdal / lib / krb5 / krb5_rd_error.3
blobb64310e820539de494b22962c3992cda9d5d89fe
1 .\" Copyright (c) 2004 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_rd_error.3 21059 2007-06-12 17:52:46Z lha $
33 .\" $NetBSD$
34 .\"
35 .Dd July 26, 2004
36 .Dt KRB5_RD_ERROR 3
37 .Os
38 .Sh NAME
39 .Nm krb5_rd_error ,
40 .Nm krb5_free_error ,
41 .Nm krb5_free_error_contents ,
42 .Nm krb5_error_from_rd_error
43 .Nd parse, free and read error from KRB-ERROR message
44 .Sh LIBRARY
45 Kerberos 5 Library (libkrb5, -lkrb5)
46 .Sh SYNOPSIS
47 .In krb5/krb5.h
48 .Ft krb5_error_code
49 .Fo krb5_rd_error
50 .Fa "krb5_context context"
51 .Fa "const krb5_data *msg"
52 .Fa "KRB_ERROR *result"
53 .Fc
54 .Ft void
55 .Fo krb5_free_error
56 .Fa "krb5_context context"
57 .Fa "krb5_error *error"
58 .Fc
59 .Ft void
60 .Fo krb5_free_error_contents
61 .Fa "krb5_context context"
62 .Fa "krb5_error *error"
63 .Fc
64 .Ft krb5_error_code
65 .Fo krb5_error_from_rd_error
66 .Fa "krb5_context context"
67 .Fa "const krb5_error *error"
68 .Fa "const krb5_creds *creds"
69 .Fc
70 .Sh DESCRIPTION
71 Usually applications never needs to parse and understand Kerberos
72 error messages since higher level functions will parse and push up the
73 error in the krb5_context.
74 These functions are described for completeness.
75 .Pp
76 .Fn krb5_rd_error
77 parses and returns the kerboeros error message, the structure should be freed with
78 .Fn krb5_free_error_contents
79 when the caller is done with the structure.
80 .Pp
81 .Fn krb5_free_error
82 frees the content and the memory region holding the structure iself.
83 .Pp
84 .Fn krb5_free_error_contents
85 free the content of the KRB-ERROR message.
86 .Pp
87 .Fn krb5_error_from_rd_error
88 will parse the error message and set the error buffer in krb5_context
89 to the error string passed back or the matching error code in the
90 KRB-ERROR message.
91 Caller should pick up the message with
92 .Fn krb5_get_error_string 3
93 (don't forget to free the returned string with
94 .Fn krb5_free_error_string ) .
95 .Sh SEE ALSO
96 .Xr krb5 3 ,
97 .Xr krb5_set_error_string 3 ,
98 .Xr krb5_get_error_string 3 ,
99 .Xr krb5.conf 5