1
0
mirror of https://github.com/samba-team/samba.git synced 2025-11-27 08:23:49 +03:00

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.
This commit is contained in:
Michael Adam
2010-06-16 16:05:34 +02:00
parent c09ee2bcb4
commit 10c50f74d0

View File

@@ -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;
};