/*
SSSD
ID-mapping library - private headers
Authors:
Sumit Bose <sbose@redhat.com>
Copyright (C) 2012 Red Hat
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef SSS_IDMAP_PRIVATE_H_
#define SSS_IDMAP_PRIVATE_H_
#define SSS_IDMAP_DEFAULT_AUTORID false
return ret; \
} \
} while(0)
struct sss_idmap_opts {
/* true if autorid compatibility mode is used */
bool autorid_mode;
/* smallest available id (for all domains) */
/* highest available id (for all domains) */
/* number of available UIDs (for single domain) */
/* maximal number of secondary slices */
int extra_slice_init;
};
struct sss_idmap_ctx {
void *alloc_pvt;
};
/* This is a copy of the definition in the samba gen_ndr/security.h header
* file. We use it here to be able to offer conversions form struct dom_sid to
* string or binary representation since those are not made available by
* public samba libraries.
*
* If the definition ever changes on the samba side we have to adopt the
* change. But chances are very low that this will ever happen since e.g. this
* struct is also defined in public documentation from Microsoft. See e.g.
* section 2.4.2.3 of "[MS-DTYP]: Windows Data Types"
* http://msdn.microsoft.com/en-us/library/cc230364(v=prot.10)
*/
struct dom_sid {
};
#endif /* SSS_IDMAP_PRIVATE_H_ */