summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * A couple more signed/unsigned issues.Andrew Bartlett2003-02-011-2/+2
| |
| * Minor doco updates - with a slightly bigger change to theAndrew Bartlett2003-02-012-44/+80
| | | | | | | | | | | | | | | | | | 'security=server/domain' text, to try and explain the difference better, and why you should always use the latter. Also update the BDC-HOWTO to have some relation to current reality. Andrew Bartlett
| * Clarifications for the ADS docs.Andrew Bartlett2003-02-011-10/+8
| |
| * Clear up the winbind doco on ADS support, and specify 'net join' not 'net rpcAndrew Bartlett2003-02-011-5/+21
| | | | | | | | | | | | | | join' as people are using the 'wrong' one and wondering why it doesn't quite work. Andrew Bartlett
| * Added first part of attribute matrix tests. Not run and compiled in right now...Jeremy Allison2003-01-311-0/+101
| | | | | | | | Jeremy.
| * Ensure Luke Howard's (C) is added.Jeremy Allison2003-01-311-1/+21
| | | | | | | | Jeremy.
| * Add 3 second timeout when terminating server and sending print notifyJeremy Allison2003-01-306-16/+65
| | | | | | | | | | | | messages. Stops build-up of large numbers of smbd's waiting to terminate on large print throughput. Jeremy.
| * More scalable print tdb fixes.Jeremy Allison2003-01-301-13/+23
| | | | | | | | Jeremy.
| * Sync up with 3.0 heimdal.Jeremy Allison2003-01-301-0/+8
| | | | | | | | Jeremy.
| * Fix kerberos compile after the tpot massicre :-).Jeremy Allison2003-01-303-1229/+1740
| | | | | | | | Jeremy
| * Stop tpot from trampling over my Heimdal fixes by moving some of themJeremy Allison2003-01-301-0/+122
| | | | | | | | | | to HEAD :-). Jeremy.
| * Straus VOS detection patches from Paul GreenGerald Carter2003-01-302-848/+905
| |
| * The REQ_DEBUGLEVEL message returns a string not a list of integers.Tim Potter2003-01-301-4/+1
| |
| * Move debug level message handling into debug.c from messages.cTim Potter2003-01-302-11/+14
| | | | | | | | Removed duplicate message_register() for REQ_DEBUGLEVEL message.
| * Fix for interesting resource constraint condition. When all opens areJeremy Allison2003-01-303-17/+22
| | | | | | | | | | | | | | | | | | | | level 2 and a request for open with no oplock is received then the smbd should send *synchronous* break messages, not asynchronous, otherwise it spins very rapidly, releasing the lock, sending the 'break to none' messages and then re-acquiring the lock before any other process has a chance to get the lock and remove it's own oplock (at least on linux). Jeremy.
| * Fix to findsmb by WaiderAndrew Bartlett2003-01-291-1/+1
| |
| * Make the vampire code use just pdb calls - allowing better operation on systemsAndrew Bartlett2003-01-291-22/+15
| | | | | | | | | | | | | | | | | | that are not configured with an add user script, and have an _nua backend for storage. We really need to get the PDB backends out of the IDMAP game... Andrew Bartlett
| * Use new interface for cli_samr_query_dispinfo().Tim Potter2003-01-293-13/+41
| |
| * Pass down max_size parameter to cli_samr_query_dispinfo() instead ofTim Potter2003-01-291-2/+35
| | | | | | | | | | | | | | | | | | | | using a hardcoded value later on. Added a helper function that returns the observed values for max_entries and max_size for each cli_samr_query_dispinfo() call. These values were obtained from watching the NT4 user manager application with ethereal and are the only ones that can enumerate a 60k user domain reliably under Windows 2000.
| * Pass down max_size parameter to init_samr_q_query_dispinfo() insteadTim Potter2003-01-291-2/+2
| | | | | | | | of hardcoding it to 0xffff.
| * Removed duplicate fn to avoid compiler warning.Tim Potter2003-01-291-19/+0
| |
| * Remove NULL buffer checks before rpcstr_pull() as they're now doneTim Potter2003-01-291-63/+38
| | | | | | | | inside this function.
| * Return 0 instead of crashing when a NULL source string is passedTim Potter2003-01-291-0/+1
| | | | | | | | to rpcstr_pull()
| * Quieten debug about gencache.tdb not being able to be opened.Tim Potter2003-01-291-1/+1
| | | | | | | | Perhaps we should try to open O_RDONLY if O_RDWR fails?
| * added LsaRemoveAccountRightsAndrew Tridgell2003-01-284-4/+163
| | | | | | | | | | this now gives us complete remove privileges control in the client libs, so we are in good shape for starting on the server side.
| * patch from Paul Green to only build libsmbclient.so on platforms that ↵Gerald Carter2003-01-283-907/+934
| | | | | | | | support shared libraries
| * First step towards XML: Use correct syntaxJelmer Vernooij2003-01-2829-1330/+1364
| |
| * First step in converting to XML: use strict syntaxJelmer Vernooij2003-01-288-44/+50
| |
| * Put in ab's conversion to XML. First step: Make all the SGML docsJelmer Vernooij2003-01-287-21/+21
| | | | | | | | conform to the (more strict) XML syntax.
| * Merge in ab's conversion to XML. First step: make SGML documents compatibleJelmer Vernooij2003-01-286-25/+28
| | | | | | | | with the (more strict) XML format.
| * cleaned up the lsa_enum_acct_rights function and added aAndrew Tridgell2003-01-286-20/+208
| | | | | | | | | | | | lsa_add_acct_rights function. This allows us to add privileges remotely to accounts using rpcclient.
| * As per a comment by herb a little while back, this should be >=, not == to keepAndrew Bartlett2003-01-281-1/+1
| | | | | | | | identical behaviour with previous versions
| * Make this an fstrcat(), as this seems to fix some weird issue with the serverAndrew Bartlett2003-01-281-2/+2
| | | | | | | | | | | | name being truncated... (either way, it's the correct thing to do). Andrew Bartlett
| * The previous patch (NTLMSSP common code factoring) was missing a minor detail -Andrew Bartlett2003-01-281-28/+35
| | | | | | | | | | | | | | | | | | testing :-). This gets the 'signiture' after the extended security blob, rather than over the top of it. Also move that code to the top of the file, with some of the other util functions. Andrew Bartlett
* | Ensure Luke Howard's (C) is added.Jeremy Allison2003-01-311-1/+21
| | | | | | | | Jeremy.
* | Add 3 second timeout when terminating server and sending print notifyJeremy Allison2003-01-306-16/+65
| | | | | | | | | | | | messages. Stops build-up of large numbers of smbd's waiting to terminate on large print throughput. Jeremy.
* | More scalable print tdb fixes.Jeremy Allison2003-01-301-13/+23
| | | | | | | | Jeremy.
* | Re-added the Heimdal stuff tpot removed.Jeremy Allison2003-01-301-0/+8
| | | | | | | | Jeremy.
* | Revert tpot's HEAD merge which broke the Heimdal build.Jeremy Allison2003-01-301-45/+15
| | | | | | | | Jeremy.
* | Revert tpot's breakage of the Heimdal fixes.Jeremy Allison2003-01-301-0/+122
| | | | | | | | Jeremy.
* | Straus VOS detection patches from Paul GreenGerald Carter2003-01-302-874/+931
| |
* | Sync of Heimdal kerberos stuff with HEAD. If this breaks I'm blamingTim Potter2003-01-304-153/+47
| | | | | | | | the dog again.
* | Merge of controversial 'max log size' fix.Tim Potter2003-01-301-0/+12
| |
* | Merge of REQ_DEBUGLEVEL messaging and debug_count fixes from HEAD.Tim Potter2003-01-302-23/+7
| |
* | Fix for interesting resource constraint condition. When all opens areJeremy Allison2003-01-303-17/+22
| | | | | | | | | | | | | | | | | | | | level 2 and a request for open with no oplock is received then the smbd should send *synchronous* break messages, not asynchronous, otherwise it spins very rapidly, releasing the lock, sending the 'break to none' messages and then re-acquiring the lock before any other process has a chance to get the lock and remove it's own oplock (at least on linux). Jeremy
* | Added "passwd backend" to WIZARD section in SWAT.John Terpstra2003-01-291-1/+1
| |
* | Merge tpot's changes to request the correct sizes for user dispinfoJeremy Allison2003-01-295-17/+78
| | | | | | | | | | | | from HEAD. I had to do this for him as he was *so* tired, the poor chap, plus he has this bad leg, plus the dog ate his homework etc. etc. Jeremy.
* | playing janitor for abartlet. :-(Gerald Carter2003-01-291-22/+15
| | | | | | | | | | | | | | | | | | | | | | | | " Make the vampire code use just pdb calls - allowing better operation on systems that are not configured with an add user script, and have an _nua backend for storage. We really need to get the PDB backends out of the IDMAP game... Andrew Bartlett "
* | Removed duplicate fn to avoid compiler warning. (from HEAD - tpot).Jeremy Allison2003-01-291-0/+2
| | | | | | | | Jeremy.
* | Merge from HEAD - fix to findsmb by WaiderAndrew Bartlett2003-01-291-1/+1
| |