summaryrefslogtreecommitdiffstats
path: root/source/libsmb
Commit message (Collapse)AuthorAgeFilesLines
...
| | * Added srv_get_info client command.Tim Potter2001-05-241-0/+46
| | |
| | * Added logon control2 client call.Tim Potter2001-05-241-29/+15
| | |
| | * Added stubs for SRVSVC and NETLOGON rpcclient commands.Tim Potter2001-05-242-0/+224
| | |
| | * merge from 2.2 DeletePrinterDriver() server side stud comingGerald Carter2001-05-171-0/+57
| | | | | | | | | | | | in separate commit after I get it working in 2.2.
| | * Fix a small warning about char * vs unsigned char * that gets some compilersRichard Sharpe2001-05-171-1/+1
| | | | | | | | | | | | in a twitch.
| | * Further recasts to sockaddr * rather than sockaddr_in *Richard Sharpe2001-05-171-3/+3
| | |
| | * Change EUCLEAN to EINVAL, as some systems do not have EUCLEAN, and EINVALRichard Sharpe2001-05-151-24/+24
| | | | | | | | | | | | is a better return code anyway (I knew that :-)
| | * Compile fixes for dynamic samr_query_userinfo() stuff.Tim Potter2001-05-141-3/+2
| | |
| | * Use talloc_strdup() instead of strdup().Tim Potter2001-05-111-1/+1
| | |
| | * Memory leak fixes plus general cleanup.Tim Potter2001-05-111-1/+4
| | |
| | * Fix for query_dispinfo()Tim Potter2001-05-081-0/+70
| | | | | | | | | | | | Added lookup_rids() function.
| | * Some reformatting (sorry Gerald).Tim Potter2001-05-072-143/+155
| | | | | | | | | | | | | | | | | | Cleanup of exit paths. Added query domain info and query display info.
| | * Fixed a compiler warning. Still more const warnings though. )-:Tim Potter2001-05-071-1/+1
| | |
| | * Zero fnum when initialising a cli_state.Tim Potter2001-05-041-0/+2
| | |
| | * Added cli_samr_query_aliasmem() and cli_samr_open_alias() functions.Tim Potter2001-05-041-0/+107
| | |
| | * Added cli_samr_enum_dom_groups() function.Tim Potter2001-05-041-0/+77
| | |
| | * Fixup smbcacls. Don't return memory already freed, don't free memory allocatedJeremy Allison2001-05-011-12/+1
| | | | | | | | | | | | | | | with talloc. Jeremy.
| | * - fixed some compiler warningsAndrew Tridgell2001-04-281-1/+1
| | | | | | | | | | | | - fixed slprintf and vsprintf macros
| | * rpcclient merge from 2.2 (including Jeremy's non-void return fix)Gerald Carter2001-04-283-162/+300
| | |
| | * merging from 2.2 to headAndrew Tridgell2001-04-224-55/+195
| | |
| | * Fix from "Darrin B. Jewell" <jewell@bdi.com> to allow anything other thanJeremy Allison2001-04-151-4/+12
| | | | | | | | | | | | | | | nmbd to talk to nmbd if it's a WINS server. Jeremy.
| | * Merge of Andrew's changes in 2.2.Jeremy Allison2001-04-131-1/+1
| | | | | | | | | | | | Jeremy.
| | * Got "medieval on our ass" about adding the -1 to slprintf.Jeremy Allison2001-04-082-7/+7
| | | | | | | | | | | | Jeremy.
| | * This is a big, rather ugly patch. Whilst investigating the files not truncatedJeremy Allison2001-03-301-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | when copying to a full disk problem, I discovered that we were not allowing the delete on close flag to be set properly, this led to other things, and after investigation of the proper delete on close semantics and their relationship to the file_share_delete flag I discovered there were some cases where we weren't doing the deny modes properly. And this after only 5 years working on them..... :-) :-). So here's the latest attempt. I realised the delete on close flag needs to be set across all smbds with a dev/ino pair open - in addition, the delete on close flag, allow share delete and delete access requested all need to be stored in the share mode tdb. The "delete_on_close" entry in the fsp struct is now redundant and should really be removed. This may also mean we can get rid of the "iterate_fsp" calls that I didn't like adding in the first place. Whilst doing this patch, I also discovered we needed to do the se_map_generic() call for file opens and POSIX ACL mapping, so I added that also. This code, although ugly, now passes the deny mode torture tests plus the delete on close tests I added. I do need to add one more multiple connection delete on close test to make sure I got the semantics exactly right, plus we should also (as Andrew suggested) move to random testing here. The good news is that NT should now correctly delete the file on disk full error when copying to a disk :-). Jeremy.
| | * Added cli_nt_delete_on_close() call to allow flag to be set for torture tests.Jeremy Allison2001-03-291-0/+41
| | | | | | | | | | | | Jeremy.
| | * Added cli_nt_create_full() as a way to get at all the ntcreate parameters.Jeremy Allison2001-03-291-6/+20
| | | | | | | | | | | | | | | Used in smbtorture mods. Re-cast cli_nt_create() as a call to cli_nt_create_full(). Jeremy.
| | * rename of 16 new_smb_io functions to smb_io_* for consistency sakeGerald Carter2001-03-281-10/+10
| | | | | | | | | | | | (merge from 2.2)
| * | Add some protection to smbc_init for people calling it more than once.Richard Sharpe2001-05-301-0/+7
| | |
| * | fixes for rpcclient. 'deldriver' now deletes the driver forGerald Carter2001-05-181-1/+1
| | | | | | | | | | | | all architectures.
| * | One more cast to sockaddr * rather than sockaddr_in *Richard Sharpe2001-05-171-1/+1
| | |
| * | Fix compile problems with Solaris and SCO ... cast to sockaddr *Richard Sharpe2001-05-171-2/+2
| | | | | | | | | | | | not sockaddr_in *.
| * | Updated these from head to change EUCLEAN to EINVAL and fix theRichard Sharpe2001-05-151-24/+24
| | | | | | | | | | | | doco in the include file.
| * | initial functions for server and client side DeletePrinterDriver()Gerald Carter2001-05-121-0/+57
| | | | | | | | | | | | | | | RPC. Need to fill in the code to actually delete the driver information from the TDB.
| * | check the number of domains returned to enum_trusted_domainsGerald Carter2001-05-091-2/+2
| | | | | | | | | | | | before allocating memory
| * | missed a merge from HEADGerald Carter2001-05-071-50/+18
| | |
| * | merge some fixes from headAndrew Tridgell2001-05-071-1/+1
| | |
| * | merge of Tim's change from HEADGerald Carter2001-05-071-93/+137
| | |
| * | merging Tim's changes form HEADGerald Carter2001-05-041-0/+184
| | |
| * | Fixup smbcacls. Don't return memory already freed, don't free memory allocatedJeremy Allison2001-05-011-12/+1
| | | | | | | | | | | | | | | with talloc. Jeremy.
| * | finished moving cli_<pipe>_XXX to use talloc() (was doing this already).Gerald Carter2001-04-272-73/+152
| | | | | | | | | | | | | | | I'll summarize the work on samba-technical in a separate mail. Still a few memory leaks. I'm working on 'em.
| * | fixed memory leaks in rpcclient's cmd_spoolss_XXX() functionsGerald Carter2001-04-271-89/+148
| | | | | | | | | | | | | | | | | | by moving to talloc() for cli_spoolss_XX(). Previously, the prs_struct's where using the TALLOC_CTX from the cli_state struct which lasted for the entire rpcclient session. Not good for long term connections.
| * | merged libsmb code from headAndrew Tridgell2001-04-2210-266/+432
| | |
| * | - removed last use of mktemp()Andrew Tridgell2001-04-181-0/+40
| | | | | | | | | | | | - added a SMBctemp test in smbtorture
* | | This commit was manufactured by cvs2svn to create branchcvs2svn Import User2001-04-1725-0/+10928
|\| | | | | | | | 'SAMBA_2_2_RELEASE'.
* | | This commit was manufactured by cvs2svn to create branchcvs2svn Import User2001-04-1728-13859/+0
|/ / | | | | 'SAMBA_2_2_RELEASE'.
* | Fix from "Darrin B. Jewell" <jewell@bdi.com> to allow anything other thanJeremy Allison2001-04-151-4/+12
| | | | | | | | | | nmbd to talk to nmbd if it's a WINS server. Jeremy.
* | portability fixed for sco1.samba.orgAndrew Tridgell2001-04-131-4/+4
| |
* | added S_OFF_T_R() for pure 32 bit systemsAndrew Tridgell2001-04-131-8/+4
| |
* | - remove template from smbrun(). Now uses /tmp and mkstempAndrew Tridgell2001-04-131-1/+1
| | | | | | | | | | | | | | - fixed some uninitialised variable warnings - removed smbrun utility (never used) - removed some incorrect varargs usage - removed smbrun smb.conf option
* | fix cast warning. fix indent to remove line wrap (cosmetic)Herb Lewis2001-04-091-6/+6
| |