summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * the 'static' keyword here is useless as we are not declaring aAndrew Tridgell2003-01-171-1/+1
| | | | | | | | variable or function
| * fix some undefined behaviour with increments in C. In theory aAndrew Tridgell2003-01-171-4/+8
| | | | | | | | compiler could have produced complete crap for this code.
| * Let's clean up client side ntlmssp!Tim Potter2003-01-171-10/+0
| | | | | | | | Removed a dead function.
| * Remove unused variable in reply_spnego_ntlmssp_okTim Potter2003-01-171-1/+0
| |
| * update for 3.0Herb Lewis2003-01-161-84/+72
| |
| * Fix an error where the SK Offset was truncated to 16 bits. Variables neededRichard Sharpe2003-01-161-1/+1
| | | | | | | | to be unsigned int (DWORD) not unsigned int (WORD).
| * Fixed up mutex protection around winbindd logon code. Sync with APP-HEAD.Jeremy Allison2003-01-164-38/+77
| | | | | | | | Jeremy.
| * Adding genlogon (from 3.0.0).John Terpstra2003-01-161-0/+71
| |
| * Added NT4 Profile Modification Docs, updated Win2K version.John Terpstra2003-01-162-0/+128
| | | | | | | | NOTE: These documents are place holders for a REAL document.
| * (missed in last commit)Andrew Bartlett2003-01-162-6/+9
| | | | | | | | | | | | | | | | | | | | Change the 'cookie' to be the ntlmssp_context, and use the 'auth_context' on that to store the cookie. Ensures that simple callbacks can 'just work'. Also make it clear that we are doing a pull_string into a pstring, not just any sized buffer. Andrew Bartlett
| * allow a couple of LSA functions to take a username instead of a SID,Andrew Tridgell2003-01-161-3/+44
| | | | | | | | | | They still accept a SID, it just can be tedious to have to type SIDs instead of names all the time.
| * Add LIBSMB_OBJ for the new ntlm_auth functionality.Andrew Bartlett2003-01-161-1/+1
| | | | | | | | Andrew Bartlett
| * Updates to the NTLMSSP code again - moving the base64 decode fuctionality outAndrew Bartlett2003-01-169-72/+273
| | | | | | | | | | | | | | | | | | | | | | | | | | of the SWAT code, and adding a base64 encoder. The main purpose of this patch is to add NTLMSSP support to 'ntlm_auth', for use with Squid. Unfortunetly the squid side doesn't quite support what we need yet. Changes to winbind to get us the info we need, and a couple of consequential changes/cleanups in the rest of the code. Andrew Bartlett
| * More Heimdal changes. Still not compiling with Heimdal yet...Jeremy Allison2003-01-164-2/+9
| | | | | | | | Jeremy.
| * Fist part of fixes to make us compile with Heimdal. Don't explicitlyJeremy Allison2003-01-164-18899/+9100
| | | | | | | | | | | | detect for now, I still have vague hopes of hiding the differences between MIT and Heimdal with a compatibility layer.... Jeremy.
| * * merge fixes for SGML syntax errors (does no one ever regenerate the docs?)Gerald Carter2003-01-1653-5564/+5850
| | | | | | | | | | * regenerate the docs * add some files from SAMBA_3_0
| * Fix a signed/unsigned warning.Andrew Bartlett2003-01-161-1/+1
| |
| * Add mutex protection around auth calls.Jeremy Allison2003-01-161-41/+37
| | | | | | | | Jeremy.
| * s/WIFSIGNALLED/WIFSIGNALED/gGerald Carter2003-01-151-1/+1
| |
| * do not use RCS variables in fileGerald Carter2003-01-151-1/+1
| |
| * add ntlogon directory and files from 3.0Gerald Carter2003-01-153-0/+580
| |
| * Removed level 0 DEBUG leftover from testing.Tim Potter2003-01-151-3/+0
| |
| * Missed auth_ntlmssp.c in last night's checkin. Also keep track of the currentAndrew Bartlett2003-01-152-225/+82
| | | | | | | | | | | | challenge in the NTLMSSP context. Andrew Bartlett
| * remove torture tools on make cleanGerald Carter2003-01-151-1/+1
| |
| * small merges from SAMBA_3_0; mostly typos, renames, etc...Gerald Carter2003-01-1511-1362/+200
| |
| * initialize acct_ctrl before using itHerb Lewis2003-01-151-2/+1
| | | | | | | | remove ldap_msgfree(result); as result is unitialized at this point
| * * removed unused variable from rpcclient codeGerald Carter2003-01-157-17/+19
| | | | | | | | | | * added container option to net command (patch from SuSE) * Makefile patch for examples/VFS from SuSE
* | Finally we compile with Heimdal as well as MIT ! Wonder if it works... :-).Jeremy Allison2003-01-286-147/+247
| | | | | | | | Jeremy.
* | performance patch from HP-UX folks (cant remember who)Gerald Carter2003-01-281-3/+14
| |
* | CUPS-PRINTER_CLASS patch from Michael SweetGerald Carter2003-01-281-2/+101
| |
* | Get smbd to link with Heimdal. Still missing some client progs...Jeremy Allison2003-01-286-20648/+10581
| | | | | | | | Jeremy.
* | sync with tpot's change to gencache_get() in HEADGerald Carter2003-01-241-22/+31
| |
* | masking an assert error in Tim's wins server checking code; needs a proper ↵Gerald Carter2003-01-241-0/+11
| | | | | | | | fix after I talk to tpot
* | Memory leak fix from Leo Qiu <leoxqiu@yahoo.com>.Jeremy Allison2003-01-241-1/+4
| | | | | | | | Jeremy.
* | Fixed typo found by tpot.Jeremy Allison2003-01-241-1/+1
| | | | | | | | Jeremy.
* | merging [un]signed declarationGerald Carter2003-01-241-1/+1
| |
* | Thanks Meeester Potter, for reverting *all* my Heimdal changes becauseJeremy Allison2003-01-232-40/+61
| | | | | | | | | | I mistyped a comma :-). Jeremy.
* | Fixed typo.Tim Potter2003-01-231-1/+1
| |
* | Sync with HEAD. The -L/usr/local/lib bit looks a bit dodgy though.Tim Potter2003-01-221-1/+1
| |
* | Sync with HEAD.Tim Potter2003-01-222-128/+8
| |
* | Minor merges from HEAD.Tim Potter2003-01-222-1/+3
| |
* | Merge: remove dead function.Tim Potter2003-01-221-10/+0
| |
* | Merge of kerberos changes to make this branch build again!Tim Potter2003-01-222-61/+40
| |
* | Merge of wins server dead list into gencache.tdbTim Potter2003-01-221-60/+54
| |
* | Merge: Make torture tools in everything target.Tim Potter2003-01-221-1/+1
| |
* | fix for CR 1603; provide description of NT_STATUS_PIPE_NOT_AVAILABLEGerald Carter2003-01-221-0/+1
| |
* | Get closer to Heimdal compile... Damn. HEAD has different code inJeremy Allison2003-01-216-15/+533
| | | | | | | | | | kerberos_verify... Jeremy.
* | Properly display popt errors. Also fix debug to be -d for consistency with ↵Jim McDonough2003-01-211-2/+3
| | | | | | | | other progs.
* | Fixup proto generation to not include krb5 specific symbolsJeremy Allison2003-01-212-5/+8
| | | | | | | | | | if no kerberos selected. Noticed by Metze. Jeremy.
* | More fixes getting us closer to full Heimdal compile....Jeremy Allison2003-01-215-11/+155
| | | | | | | | Jeremy.