diff options
author | Stephen Gallagher <sgallagh@redhat.com> | 2012-04-22 13:57:54 -0400 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2012-05-03 14:09:13 -0400 |
commit | 13c88d62a09c152983abc99d989bb077fa987acb (patch) | |
tree | 640178cb5d703d33e6651d3946de9ee69c096a81 /src/providers/ldap/ldap_opts.h | |
parent | 505e75ba28b42bb3de7a6d55de825091b70cc2b2 (diff) | |
download | sssd-13c88d62a09c152983abc99d989bb077fa987acb.tar.gz sssd-13c88d62a09c152983abc99d989bb077fa987acb.tar.bz2 sssd-13c88d62a09c152983abc99d989bb077fa987acb.zip |
LDAP: Add ID mapping range settings
Diffstat (limited to 'src/providers/ldap/ldap_opts.h')
-rw-r--r-- | src/providers/ldap/ldap_opts.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/providers/ldap/ldap_opts.h b/src/providers/ldap/ldap_opts.h index 1f9ca57a..a4c78069 100644 --- a/src/providers/ldap/ldap_opts.h +++ b/src/providers/ldap/ldap_opts.h @@ -96,6 +96,9 @@ struct dp_option default_basic_opts[] = { { "ldap_sasl_canonicalize", DP_OPT_BOOL, BOOL_FALSE, BOOL_FALSE }, { "ldap_connection_expire_timeout", DP_OPT_NUMBER, { .number = 900 }, NULL_NUMBER }, { "ldap_disable_paging", DP_OPT_BOOL, BOOL_FALSE, BOOL_FALSE }, + { "ldap_idmap_range_min", DP_OPT_NUMBER, { .number = 100001 }, NULL_NUMBER }, + { "ldap_idmap_range_max", DP_OPT_NUMBER, { .number = 2000100000LL }, NULL_NUMBER }, + { "ldap_idmap_range_size", DP_OPT_NUMBER, { .number = 200000 }, NULL_NUMBER }, DP_OPTION_TERMINATOR }; |