diff options
author | Sumit Bose <sbose@redhat.com> | 2009-08-24 15:17:37 +0200 |
---|---|---|
committer | Simo Sorce <ssorce@redhat.com> | 2009-08-24 11:03:22 -0400 |
commit | ce0111fe4f1c5ea09a23c2be43fc1fcc1cdbdac8 (patch) | |
tree | dcea6a6071220dda84ee0e6abc6479780c9ce41d /server/providers/ldap/sdap.h | |
parent | 7bc48f82f587b148b821e34f57c1414e82a18276 (diff) | |
download | sssd-ce0111fe4f1c5ea09a23c2be43fc1fcc1cdbdac8.tar.gz sssd-ce0111fe4f1c5ea09a23c2be43fc1fcc1cdbdac8.tar.bz2 sssd-ce0111fe4f1c5ea09a23c2be43fc1fcc1cdbdac8.zip |
some UPN handling fixes
- making the realm part upper case is now optional and done in the
LDAP backend
- using a username@realm UPN is now optional
Diffstat (limited to 'server/providers/ldap/sdap.h')
-rw-r--r-- | server/providers/ldap/sdap.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/server/providers/ldap/sdap.h b/server/providers/ldap/sdap.h index 5afbcfc0..50fc3d10 100644 --- a/server/providers/ldap/sdap.h +++ b/server/providers/ldap/sdap.h @@ -84,8 +84,9 @@ enum sdap_result { #define SDAP_GROUP_SEARCH_FILTER 12 #define SDAP_SCHEMA 13 #define SDAP_OFFLINE_TIMEOUT 14 +#define SDAP_FORCE_UPPER_CASE_REALM 15 -#define SDAP_OPTS_BASIC 15 /* opts counter */ +#define SDAP_OPTS_BASIC 16 /* opts counter */ /* the objectclass must be the first attribute. * Functions depend on this */ @@ -139,6 +140,7 @@ struct sdap_options { int network_timeout; int opt_timeout; int offline_timeout; + bool force_upper_case_realm; /* supported schema types */ enum schema_type { |