diff options
author | Ralph Boehme <slow@samba.org> | 2017-12-19 17:26:46 +0100 |
---|---|---|
committer | Karolin Seeger <kseeger@samba.org> | 2018-01-13 12:55:08 +0100 |
commit | ec85579d87aafba3a78ddd326cf125909007c349 (patch) | |
tree | f36363d95a7f3aabac17c622484178e4d9dd22cb /nsswitch | |
parent | f12a43f4876b4a6bf556ea760ffe8e21f2acacf8 (diff) | |
download | samba-ec85579d87aafba3a78ddd326cf125909007c349.tar.gz |
libwbclient: add trust routing and more trust-types
This adds the struct member and the defines, the implementation comes
later.
Signed-off-by: Ralph Boehme <slow@samba.org>
Diffstat (limited to 'nsswitch')
-rw-r--r-- | nsswitch/libwbclient/wbclient.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/nsswitch/libwbclient/wbclient.h b/nsswitch/libwbclient/wbclient.h index ed97a673739..81a6a6a069b 100644 --- a/nsswitch/libwbclient/wbclient.h +++ b/nsswitch/libwbclient/wbclient.h @@ -187,6 +187,7 @@ struct wbcDomainInfo { uint32_t domain_flags; uint32_t trust_flags; uint32_t trust_type; + char *trust_routing; }; /* wbcDomainInfo->domain_flags */ @@ -209,6 +210,12 @@ struct wbcDomainInfo { #define WBC_DOMINFO_TRUSTTYPE_FOREST 0x00000001 #define WBC_DOMINFO_TRUSTTYPE_IN_FOREST 0x00000002 #define WBC_DOMINFO_TRUSTTYPE_EXTERNAL 0x00000003 +#define WBC_DOMINFO_TRUSTTYPE_LOCAL 0x00000004 +#define WBC_DOMINFO_TRUSTTYPE_WKSTA 0x00000005 +#define WBC_DOMINFO_TRUSTTYPE_RWDC 0x00000006 +#define WBC_DOMINFO_TRUSTTYPE_RODC 0x00000007 +#define WBC_DOMINFO_TRUSTTYPE_PDC 0x00000008 + /** * @brief Generic Blob |