summaryrefslogtreecommitdiffstats
path: root/auth/credentials
Commit message (Collapse)AuthorAgeFilesLines
...
* credentials: Prioritise command-line specified options above defaults from ↵Andrew Bartlett2011-10-181-3/+15
| | | | | | | | | | | | | | smb.conf If a user specified -W or --realm on the command line, then this is of level SPECIFIED, not UNINITIALISED, despite it going via the loadparm system. This helps us to ensure that -W server -Ulocaluser is parsed the same as -Userver\localuser. This matters as otherwise we might instead attempt to use kerberos to the realm from the smb.conf. Andrew Bartlett
* auth/credentials Declare remaining functions are public interfaces and put ↵Andrew Bartlett2011-10-112-9/+45
| | | | | | | | | into credentials.h This is in preperation for this file being used by s3, and recognises that these are all reasonable, public interfaces but were not declared as such in the past. Andrew Bartlett
* auth: move credentials layer to the top levelAndrew Bartlett2011-10-1112-0/+3655
This will allow gensec_start.c to move to the top level. This does not change what code uses the cli_credentials code, but allows the gensec code to be more broadly. Andrew Bartlett