s3-testparm: Throw warning when 'workgroup' and 'netbios name' are identical.
[Samba/gebeck_regimport.git] / source3 / include / smb_krb5.h
blob3e5c86268a98e930d1f556595782280212beba6f
1 #ifndef _HEADER_smb_krb5_h
2 #define _HEADER_smb_krb5_h
4 #define KRB5_PRIVATE 1 /* this file uses PRIVATE interfaces! */
5 /* this file uses DEPRECATED interfaces! */
7 #if defined(HAVE_KRB5_DEPRECATED_WITH_IDENTIFIER)
8 #define KRB5_DEPRECATED 1
9 #else
10 #define KRB5_DEPRECATED
11 #endif
13 #if HAVE_KRB5_H
14 #include <krb5.h>
15 #endif
17 #ifndef KRB5_ADDR_NETBIOS
18 #define KRB5_ADDR_NETBIOS 0x14
19 #endif
21 #ifndef KRB5KRB_ERR_RESPONSE_TOO_BIG
22 #define KRB5KRB_ERR_RESPONSE_TOO_BIG (-1765328332L)
23 #endif
25 /* Heimdal uses a slightly different name */
26 #if defined(HAVE_ENCTYPE_ARCFOUR_HMAC_MD5)
27 #define ENCTYPE_ARCFOUR_HMAC ENCTYPE_ARCFOUR_HMAC_MD5
28 #endif
30 /* The older versions of heimdal that don't have this
31 define don't seem to use it anyway. I'm told they
32 always use a subkey */
33 #ifndef HAVE_AP_OPTS_USE_SUBKEY
34 #define AP_OPTS_USE_SUBKEY 0
35 #endif
37 #ifdef HAVE_KRB5
38 typedef struct {
39 #if defined(HAVE_MAGIC_IN_KRB5_ADDRESS) && defined(HAVE_ADDRTYPE_IN_KRB5_ADDRESS) /* MIT */
40 krb5_address **addrs;
41 #elif defined(HAVE_KRB5_ADDRESSES) /* Heimdal */
42 krb5_addresses *addrs;
43 #else
44 #error UNKNOWN_KRB5_ADDRESS_TYPE
45 #endif /* defined(HAVE_MAGIC_IN_KRB5_ADDRESS) && defined(HAVE_ADDRTYPE_IN_KRB5_ADDRESS) */
46 } smb_krb5_addresses;
48 #ifdef HAVE_KRB5_KEYBLOCK_KEYVALUE /* Heimdal */
49 #define KRB5_KEY_TYPE(k) ((k)->keytype)
50 #define KRB5_KEY_LENGTH(k) ((k)->keyvalue.length)
51 #define KRB5_KEY_DATA(k) ((k)->keyvalue.data)
52 #define KRB5_KEY_DATA_CAST void
53 #else /* MIT */
54 #define KRB5_KEY_TYPE(k) ((k)->enctype)
55 #define KRB5_KEY_LENGTH(k) ((k)->length)
56 #define KRB5_KEY_DATA(k) ((k)->contents)
57 #define KRB5_KEY_DATA_CAST krb5_octet
58 #endif /* HAVE_KRB5_KEYBLOCK_KEYVALUE */
60 #ifdef HAVE_KRB5_KEYTAB_ENTRY_KEY /* MIT */
61 #define KRB5_KT_KEY(k) (&(k)->key)
62 #elif HAVE_KRB5_KEYTAB_ENTRY_KEYBLOCK /* Heimdal */
63 #define KRB5_KT_KEY(k) (&(k)->keyblock)
64 #else
65 #error krb5_keytab_entry has no key or keyblock member
66 #endif /* HAVE_KRB5_KEYTAB_ENTRY_KEY */
68 #endif /* HAVE_KRB5 */
70 #include "krb5_protos.h"
72 #endif /* _HEADER_smb_krb5_h */