summaryrefslogtreecommitdiffstats
path: root/source/include/sam.h
Commit message (Collapse)AuthorAgeFilesLines
* Remove SAM - it belongs in HEADJelmer Vernooij2002-10-291-282/+0
|
* Another patch from metze, towards his work on sam_ads.Andrew Bartlett2002-09-251-3/+3
| | | | See mx-ldap.sf.net for his current progress.
* - Don't put pointer to sam_domain_handle in sam_methods but single domainsid ↵Jelmer Vernooij2002-09-241-2/+3
| | | | | | | | and domainname - Allocate sam_methods, set domain_sid, domain_name and backend_name in make_sam_methods_backend_entry instead of in the backend - Remove sam_context and domain_sid pointers from the sam_init_function - we don't need those arguments anymore since they're available in sam_methods as well
* Merge in first command for 'samtest'Jelmer Vernooij2002-09-191-0/+3
| | | | | Fix small bug in sam/interface.c Make sam backend to default to a define
* Make current_sam_methods a const - Patch by Kai KrügerJelmer Vernooij2002-09-151-3/+3
|
* Patch from Kai Krüger for the new SAM systemJelmer Vernooij2002-09-081-2/+9
|
* Updates to sam_skel from metze, add sam/group.c and add a DEBUG() to theAndrew Bartlett2002-09-061-2/+5
| | | | SAM_ASSERT if we are not going to crash.
* This commit includes part of the patch from metze posted to the list, and a fewAndrew Bartlett2002-09-061-30/+46
| | | | | | | | | | | | | | | | | | | | | of my own changes. In particular: I've added a SAM_ASSERT macro. This expands to either SMB_ASSERT() (which should help us track down bugs) or a return of NT_STATUS_CHECK_FAIL. Metze's changes are mostly to bring the code into line with current discussions on things like adding users/groups, flags etc. I've adjusted a fair bit of the 'const' in the SAM stuff. Const is currently used only for pointers, not for local variables or non-pointer paramters. The benifits and reasons for extending this further need discussion on samba-technical. Also, some of the 'context' paramters should not be const, to allow backend modules to do fancy caching etc in them. Andrew Bartlett
* small typo, kai is german :-)Volker Lendecke2002-09-021-1/+1
|
* Put in patch from metze (Stefan Metzmacher) to:Jelmer Vernooij2002-08-291-141/+135
| | | | | | - Rename user -> account - Add sam_* functions (api.c) - Several small fixes
* Put in intermediate version of new SAM system. It's not stable yet, codeJelmer Vernooij2002-08-281-0/+258
might be ugly, etc - please don't blame me for anything but instead try to fix the code :-). Compiling of the new sam system can be enabled with the configure option --with-sam Removing passdb/passgrp.c as it's unused fix typo in utils/testparm.c