~ubuntu-branches/ubuntu/precise/krb5/precise-updates

« back to all changes in this revision

Viewing changes to src/windows/identity/plugins/krb5/errorfuncs.h

  • Committer: Package Import Robot
  • Author(s): Sam Hartman
  • Date: 2011-12-01 19:34:41 UTC
  • mfrom: (28.1.14 sid)
  • Revision ID: package-import@ubuntu.com-20111201193441-9tipg3aru1jsidyv
Tags: 1.10+dfsg~alpha1-6
* Fix segfault with unknown hostnames in krb5_sname_to_principal,
  Closes: #650671
* Indicate that this library breaks libsmbclient versions that depend on
  krb5_locate_kdc, Closes: #650603, #650611

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright (c) 2005 Massachusetts Institute of Technology
3
 
 *
4
 
 * Permission is hereby granted, free of charge, to any person
5
 
 * obtaining a copy of this software and associated documentation
6
 
 * files (the "Software"), to deal in the Software without
7
 
 * restriction, including without limitation the rights to use, copy,
8
 
 * modify, merge, publish, distribute, sublicense, and/or sell copies
9
 
 * of the Software, and to permit persons to whom the Software is
10
 
 * furnished to do so, subject to the following conditions:
11
 
 *
12
 
 * The above copyright notice and this permission notice shall be
13
 
 * included in all copies or substantial portions of the Software.
14
 
 *
15
 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16
 
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17
 
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18
 
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
19
 
 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
20
 
 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
21
 
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
 
 * SOFTWARE.
23
 
 */
24
 
 
25
 
/* $Id$ */
26
 
 
27
 
#ifndef __KHIMAIRA_ERR_H
28
 
#define __KHIMAIRA_ERR_H
29
 
 
30
 
/* All error handling and reporting related functions for the krb4/5
31
 
   and AFS plugins */
32
 
 
33
 
#include <errno.h>
34
 
#include <com_err.h>
35
 
/*
36
 
 * This is a hack needed because the real com_err.h does
37
 
 * not define err_func.  We need it in the case where
38
 
 * we pull in the real com_err instead of the krb4
39
 
 * impostor.
40
 
 */
41
 
#ifndef _DCNS_MIT_COM_ERR_H
42
 
typedef LPSTR (*err_func)(int, long);
43
 
#endif
44
 
 
45
 
#include <krberr.h>
46
 
#include <kadm_err.h>
47
 
 
48
 
#define kadm_err_base ERROR_TABLE_BASE_kadm
49
 
 
50
 
#include <stdarg.h>
51
 
 
52
 
#ifndef KRBERR
53
 
#define KRBERR(code) (code + krb_err_base)
54
 
#endif
55
 
 
56
 
/*! \internal
57
 
    \brief Describe an error
58
 
 
59
 
    \param[in] code Error code returned by Kerberos
60
 
    \param[out] buf Receives the error string
61
 
    \param[in] cbbuf Size of buffer pointed to by \a buf
62
 
    \param[out] suggestion Message ID of suggestion
63
 
    \param[out] suggest_code Suggestion ID
64
 
*/
65
 
void khm_err_describe(long code, wchar_t * buf, khm_size cbbuf,
66
 
                      DWORD * suggestion,
67
 
                      kherr_suggestion * suggest_code);
68
 
 
69
 
/* */
70
 
khm_int32 init_error_funcs();
71
 
 
72
 
khm_int32 exit_error_funcs();
73
 
 
74
 
 
75
 
#endif