libwbclient: add more trust types
authorRalph Boehme <slow@samba.org>
Wed, 13 Dec 2017 15:01:50 +0000 (16:01 +0100)
committerKarolin Seeger <kseeger@samba.org>
Sat, 13 Jan 2018 11:55:08 +0000 (12:55 +0100)
Prepare libwbclient for additional trust types and trust routing.

Signed-off-by: Ralph Boehme <slow@samba.org>
nsswitch/libwbclient/wbc_util.c

index 3dab0a2de1bb3f7117dd25e748fe9df56c6da94a..ecfcaa0fb60665547e65e9e325b90e41c7cbf032 100644 (file)
@@ -455,8 +455,22 @@ static wbcErr process_domain_info_string(struct wbcDomainInfo *info,
        *s = '\0';
        s++;
 
        *s = '\0';
        s++;
 
-       if (strcmp(r, "None") == 0) {
+       if (strcmp(r, "Local") == 0) {
                info->trust_type = WBC_DOMINFO_TRUSTTYPE_NONE;
                info->trust_type = WBC_DOMINFO_TRUSTTYPE_NONE;
+       } else if (strncmp(r, "Routed", strlen("Routed")) == 0) {
+               info->trust_type = WBC_DOMINFO_TRUSTTYPE_NONE;
+               info->trust_routing = strdup(r);
+               BAIL_ON_PTR_ERROR(info->trust_routing, wbc_status);
+       } else if (strcmp(r, "Local") == 0) {
+               info->trust_type = WBC_DOMINFO_TRUSTTYPE_LOCAL;
+       } else if (strcmp(r, "Workstation") == 0) {
+               info->trust_type = WBC_DOMINFO_TRUSTTYPE_WKSTA;
+       } else if (strcmp(r, "RWDC") == 0) {
+               info->trust_type = WBC_DOMINFO_TRUSTTYPE_RWDC;
+       } else if (strcmp(r, "RODC") == 0) {
+               info->trust_type = WBC_DOMINFO_TRUSTTYPE_RODC;
+       } else if (strcmp(r, "PDC") == 0) {
+               info->trust_type = WBC_DOMINFO_TRUSTTYPE_PDC;
        } else if (strcmp(r, "External") == 0) {
                info->trust_type = WBC_DOMINFO_TRUSTTYPE_EXTERNAL;
        } else if (strcmp(r, "Forest") == 0) {
        } else if (strcmp(r, "External") == 0) {
                info->trust_type = WBC_DOMINFO_TRUSTTYPE_EXTERNAL;
        } else if (strcmp(r, "Forest") == 0) {