summaryrefslogtreecommitdiffstats
path: root/source
Commit message (Collapse)AuthorAgeFilesLines
...
* Finished converion of spoolss code to canonical format. Now to work on theJeremy Allison2001-02-283-163/+215
| | | | | PRINT_XX struct alloc/free issues. Jeremy.
* Fix for stack return from "Jim McDonough" <jmcdough@hotmail.com>.Jeremy Allison2001-02-281-3/+8
| | | | Jeremy.
* More converted to canonical format. Home now - do the rest tomorrow...Jeremy Allison2001-02-283-98/+122
| | | | Jeremy.
* Converted more to canonical format... save as I go.,Jeremy Allison2001-02-283-35/+44
| | | | Jeremy.
* Ooops - forgot to check the rpcclient and smbcacls compile with the newJeremy Allison2001-02-285-35/+38
| | | | | code :-(. Jeremy.
* Partial conversion of SPOOLSS code to canonical format. More to follow.Jeremy Allison2001-02-283-76/+107
| | | | | | Once complete then the PRINTER_XX functions and structures will be converted to talloc control. Jeremy.
* Move to talloc control of SPOOL_XXX structs. Move to talloc control ofJeremy Allison2001-02-2813-707/+451
| | | | | security descriptors and pointers. Syncup with 2.2 tree. Jeremy.
* Fixes from Toomas Soome <tsoome@ut.ee> code unicode problems, plusJeremy Allison2001-02-272-79/+86
| | | | | a solaris quota update fix. Jeremy.
* Don't marshal data from a stack frame.....Jeremy Allison2001-02-271-8/+14
| | | | Jeremy.
* Added total memory allocated counter to talloc, so we can tell if a tallocJeremy Allison2001-02-278-60/+134
| | | | | | | pool is getting bloated. Also added a talloc_zero function to return zeroed memory. Added debug in rpc_server/srv_pipe_hnd.c so we know when a talloc pool is being freed. Syncup with srv_pipe_hnd.c from 2.2 so we are freeing memory at the same time. Jeremy.
* Hmmm. I thought I'd added these files to CVS head.....Jeremy Allison2001-02-273-0/+3673
| | | | Jeremy.
* better handling of '.'Andrew Tridgell2001-02-271-15/+17
| | | | better verbose print
* remove some test codeAndrew Tridgell2001-02-271-1/+2
|
* almost there with lanman1 wildcards. We now seem to correctly handleAndrew Tridgell2001-02-271-4/+17
| | | | | '<', '>', '"' and '?' when combined with '.'. The '*' character is proving troublesome.
* I have now found that despite initial appearences the lanman1 wildcardAndrew Tridgell2001-02-271-35/+24
| | | | | | algorithm does *not* match separately on base and extension. I also added a -v option to masktest for verbose output
* Added patch from Urban Widmark <urban@teststation.com> modified by me toJeremy Allison2001-02-272-622/+726
| | | | | enable large file support on Linux if glibc >= 2.2 and kernel >= 2.4. Jeremy.
* As prs_alloc_mem now zeros memory, remove superfluous memsets after it.Jeremy Allison2001-02-273-13/+0
| | | | Jeremy.
* Separated dfs pipe into implementation and interface modules.Jeremy Allison2001-02-276-649/+468
| | | | | | rpc_parse/parse_dfs.c: Had to add buffer overrun checking ! HOW DID THIS GET IN HERE ! rpc_parse/parse_prs.c: Ensure prs_alloc_mem does a memset of zero before returning. Jeremy.
* Implementation module for netlog pipe. Can't be easily integrated intoJeremy Allison2001-02-271-0/+663
| | | | | HEAD right now due to passdb changes - placeholder added. Jeremy.
* Split srvsvc pipe into interface and implementation modules.Jeremy Allison2001-02-264-992/+148
| | | | Jeremy.
* Split wks pipe into interface and implementation modules.Jeremy Allison2001-02-264-54/+97
| | | | Jeremy.
* Separated lsa code into interface and implementation.Jeremy Allison2001-02-264-516/+72
| | | | Jeremy.
* Added implementation file for lsa.Jeremy Allison2001-02-261-0/+475
| | | | Jeremy.
* Fix some errors uncovered in libsmbclient by the test suiteRichard Sharpe2001-02-262-120/+57
| | | | | Fix some problems with unused variables and reaching the end of a nonvoid function
* Started conversion of lsa server code to canonical format (as srv_reg andJeremy Allison2001-02-264-58/+162
| | | | | srv_samr have been). Jeremy.
* made some LANMAN1 wildcard progressAndrew Tridgell2001-02-264-15/+24
| | | | it now handles -M LANMAN1 -f '.x' -m '?x' nicely
* updated prototypesAndrew Tridgell2001-02-261-11/+4
|
* made some progress in masktestAndrew Tridgell2001-02-261-16/+15
| | | | it now handles the server renaming files on create
* fixed a bug in non-terminated unicode strings with clistr_pull()Andrew Tridgell2001-02-261-1/+1
|
* add cli_list_new() for forced new protocol listingAndrew Tridgell2001-02-261-8/+18
|
* a snapshot of my attempts to get wildcard matching right for LANMAN1Andrew Tridgell2001-02-251-10/+108
| | | | | clients. This is not complete and not correct - expect some more work on this soon
* use cli_list_old() when negotiating the older protocolsAndrew Tridgell2001-02-251-0/+4
|
* neater negprot code using the new cli_setup_bcc() callAndrew Tridgell2001-02-251-7/+2
|
* the -m option to the client is backAndrew Tridgell2001-02-251-2/+4
|
* Separated reg code into interface & implementation.Jeremy Allison2001-02-255-177/+218
| | | | | libsmb/namequery.c: Removed ununsed variables. Jeremy.
* rpc_client/cli_netlogon.c: Fixed incorrect printf.Jeremy Allison2001-02-259-46/+670
| | | | | Added Solaris ACL support. Jeremy.
* This patch (donated by Marc Jacobsen of HP) should make Sun and HP very ↵Jeremy Allison2001-02-243-80/+179
| | | | | | | | | | | happy :-). Probably Veritas too... :-). It allows Samba as a domain member to authenticate against an AS/U server such as the older HP PDC product or PD Netlink. It does this by trying a netlogon with info level 3 and then falling back to info level 2 if the PDC returns invalid info level. Jeremy.
* removed wrong patch to get_dir_entry(). This was left over from theGerald Carter2001-02-231-5/+0
| | | | wildcard stuff....
* make sure denied aces are firstAndrew Tridgell2001-02-231-1/+1
|
* cast the qsortAndrew Tridgell2001-02-231-1/+1
|
* - fixed the sort_acl bug, sorting now works rightAndrew Tridgell2001-02-232-54/+52
| | | | | - don't allow setting of duplicate ACEs - fixed a ACE delete bug
* include/rpc_spoolss.h: Added JOB_STATUS_XXX defines.Jeremy Allison2001-02-235-69/+112
| | | | | | | | | | | | | include/smb.h: Added LPQ_xx enums to correspond with the NT JOB_STATUS_XXX. We need these to be different as we're storing LPQ_xx enums in the tdb already. rpc_server/srv_spoolss_nt.c: Don't need to return status strings as we're now returning status codes. smbd/lanman.c: Change the RAP status codes to have "RAP" in the name. printing/printing.c: Keep track of the status of a job. Allow a job to be deleted from one smbd when being submitted by another. Made logic in mutex clearer. Jeremy.
* Always increment even if the read fails (otherwise we spin if we hit the ↵Jeremy Allison2001-02-231-1/+4
| | | | | | kernel bug...). Jeremy
* lib/select.c: Fix for Linux 2.0.x kernel that causes select to return true ↵Jeremy Allison2001-02-222-17/+130
| | | | | | | | | | | on a pipe and then a blocking read to fail. Make the pipe read/write non blocking. printing/printing.c: Added a mutex around the code that enumerates all the jobs in a print queue. Allows only one smbd to be doing this at any one time. This fixes a capacity problem discovered at HP with <10,000 jobs in a print queue. Jeremy.
* don't crash on null acl sortAndrew Tridgell2001-02-221-0/+2
|
* fixed character set init in smbw_sampleAndrew Tridgell2001-02-221-0/+2
|
* - workaround filer lsa lookup bug for unknown sidsAndrew Tridgell2001-02-221-11/+10
| | | | - add \ at start of name if not needed (another filer workaround)
* cope with filer/NT/samba all in one binary. yeah.Andrew Tridgell2001-02-221-7/+35
| | | | we now don't open rw for acls
* make sure we don't free non-allocated dataAndrew Tridgell2001-02-221-7/+10
|
* cope better with broken filer expectationsAndrew Tridgell2001-02-221-2/+2
|