diff options
author | Michael Adam <obnox@samba.org> | 2010-06-16 16:05:34 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2010-08-14 02:10:41 +0200 |
commit | 10c50f74d0efc4a6e4d58e7158b319da41528f8f (patch) | |
tree | 3970059b4463c425187c3fafa9e3619ee64e3312 /source3 | |
parent | c09ee2bcb41ef80ab4f33abf5de3ff4aca324f51 (diff) | |
download | samba-10c50f74d0efc4a6e4d58e7158b319da41528f8f.tar.gz samba-10c50f74d0efc4a6e4d58e7158b319da41528f8f.tar.bz2 samba-10c50f74d0efc4a6e4d58e7158b319da41528f8f.zip |
s3:idmap: add low_id and high_id to the idmap_domain struct
This global data will replace the backend-specific filter_low_id
and filter_high_id. The presence of a range is generic to all
idmap configs.
Diffstat (limited to 'source3')
-rw-r--r-- | source3/include/idmap.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/include/idmap.h b/source3/include/idmap.h index b1598208b2..ad94045cbf 100644 --- a/source3/include/idmap.h +++ b/source3/include/idmap.h @@ -33,6 +33,8 @@ struct idmap_domain { const char *name; struct idmap_methods *methods; + uint32_t low_id; + uint32_t high_id; void *private_data; }; |