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

« back to all changes in this revision

Viewing changes to src/windows/identity/kcreddb/identity.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_KCDB_IDENTITY_H
28
 
#define __KHIMAIRA_KCDB_IDENTITY_H
29
 
 
30
 
/* Identity */
31
 
 
32
 
#define KCDB_IDENT_HASHTABLE_SIZE 31
33
 
 
34
 
typedef struct kcdb_identity_t {
35
 
    khm_int32 magic;
36
 
    wchar_t * name;
37
 
    khm_int32 flags;
38
 
    khm_int32 refcount;
39
 
    kcdb_buf  buf;
40
 
    khm_ui_4  refresh_cycle;
41
 
    LDCL(struct kcdb_identity_t);
42
 
} kcdb_identity;
43
 
 
44
 
#define KCDB_IDENT_MAGIC 0x31938d4f
45
 
 
46
 
extern hashtable * kcdb_identities_namemap;
47
 
extern khm_int32 kcdb_n_identities;
48
 
extern kcdb_identity * kcdb_identities; /* all identities */
49
 
extern kcdb_identity * kcdb_def_identity; /* default identity */
50
 
extern khm_ui_4 kcdb_ident_refresh_cycle;
51
 
 
52
 
void kcdbint_ident_init(void);
53
 
void kcdbint_ident_exit(void);
54
 
void kcdbint_ident_msg_completion(kmq_message * m);
55
 
void kcdbint_ident_post_message(khm_int32 op, kcdb_identity * id);
56
 
 
57
 
#define kcdb_is_identity(id) ((id) && ((kcdb_identity *)(id))->magic == KCDB_IDENT_MAGIC)
58
 
#define kcdb_is_active_identity(id) (kcdb_is_identity(id) && (((kcdb_identity *)(id))->flags & KCDB_IDENT_FLAG_ACTIVE))
59
 
 
60
 
#endif