diff options
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/idmap.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source3/include/idmap.h b/source3/include/idmap.h index c8df61c53c..99d8f63a2c 100644 --- a/source3/include/idmap.h +++ b/source3/include/idmap.h @@ -50,6 +50,9 @@ struct idmap_methods { and type and gets back a uid or gid. */ NTSTATUS (*sids_to_unixids)(struct idmap_domain *dom, struct id_map **ids); + /* Allocate a Unix-ID. */ + NTSTATUS (*allocate_id)(struct idmap_domain *dom, struct unixid *id); + /* Called when backend is unloaded */ NTSTATUS (*close_fn)(struct idmap_domain *dom); }; |