From ea224c3813a537639778f91ac762732b3c289603 Mon Sep 17 00:00:00 2001 From: Jakub Hrozek Date: Tue, 12 May 2015 14:24:00 +0200 Subject: SYSDB: Store trust direction for subdomains We need to store the subdomain trust direction in order to recover the structure after SSSD restart. The trust direction is a plain uint32_t to avoid leaking the knowledge about AD trust directions to sysdb while at the same time making it easy to compare values between sysdb and LDAP and avoid translating the values. Reviewed-by: Sumit Bose --- src/confdb/confdb.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/confdb') diff --git a/src/confdb/confdb.h b/src/confdb/confdb.h index 93fbce5e5..25b8fe8d3 100644 --- a/src/confdb/confdb.h +++ b/src/confdb/confdb.h @@ -260,6 +260,7 @@ struct sss_domain_info { char *flat_name; char *domain_id; char *forest; + uint32_t trust_direction; struct timeval subdomains_last_checked; bool has_views; -- cgit