summaryrefslogtreecommitdiff
path: root/src/lib/idmap/sss_idmap_private.h
AgeCommit message (Collapse)AuthorFilesLines
2013-04-29libsss_idmap: function to calculate rangeMichal Zidek1-0/+20
Calculation of range for domains is moved from sdap_idmap code to sss_idmap code. Some refactoring have been done to allow this move. https://fedorahosted.org/sssd/ticket/1844
2012-06-08sss_idmap: add support for samba struct dom_sidSumit Bose1-0/+19
The samba ndr libraries use struct dom_sid to handle SIDs. Since there is no public samba library which offers conversion from other representations, e.g. as string, this is added to libsss_idmap. To avoid compile-time or run-time dependency to any samba library or header file the definition of the struct is copied here.
2012-05-01Allow different SID representations in libidmapSumit Bose1-0/+41
Besides as strings it is now possible to use binary SIDs or a struct containing all SID information. Functions to convert between these formats are added as well.