summaryrefslogtreecommitdiffstats
path: root/source/libsmb
Commit message (Collapse)AuthorAgeFilesLines
...
| | * Added addform, setform and deleteform cli functions.Tim Potter2002-01-311-0/+164
| | |
| * | Yes, I think this should be fixed in 2.2.4 as well. Minor bug, minor fix.Christopher R. Hertel2002-04-221-5/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Small change to correct the value we place in the DGM_LENGTH field of NBT Datagram messages. We have been counting the full datagram, but it's fairly clear in the RFCs that we should only count the source name, destination name, and payload. We've been overcharging by 14 bytes (the size of the NBT DGM header). This fix brings us in line with what Windows does, and what the RFCs say should be done. I'm a little surprised that this didn't cause any bugs or error messages. I guess no one actually checks this field.
| * | libsmb/cli_netlogon.c: Fixed confusing debug messages.Jeremy Allison2002-04-171-5/+5
| | | | | | | | | | | | | | | | | | param/loadparm.c: Added missing debugs that would have helped me find a misconfiguration I lost a day on.... Jeremy.
| * | Add a patch to look up the DMB if the LMB cannot be found. Based on a ↵Richard Sharpe2002-04-151-6/+10
| | | | | | | | | | | | suggestion from Jürgen Appel <jappel@linux01.gwdg.de>
| * | Merged in Tim's fixes, tridge's fix.Jeremy Allison2002-04-142-21/+23
| | | | | | | | | | | | Jeremy.
| * | Add code to try a reverse lookup of the name of the server based on the IPRichard Sharpe2002-04-091-0/+29
| | | | | | | | | | | | | | | if we fail to connect both with the server name and *SMBSERVER and the server name is an IP address.
| * | Always pass NT password as well as Lanman.Jeremy Allison2002-04-061-1/+1
| | | | | | | | | | | | Jeremy.
| * | Merge from HEAD:Tim Potter2002-04-041-1/+1
| | | | | | | | | | | | | | | >Fixed memory leak in cli_lsa_enum_trust_dom(). Use talloc_strdup() instead >of strdup().
| * | more rpcclient syncs with HEAD. Should not affect server functionalityGerald Carter2002-04-036-28/+445
| | | | | | | | | | | | | | | at all. Will perform some more testing tomorrow to make sure I haven't broken things....
| * | Some merges from HEAD. rpcclient's spoolss functions still do notGerald Carter2002-04-021-248/+660
| | | | | | | | | | | | work (parsing problems). Intermediate checkin. Does compile.
| * | Small optimization to receive_smb to allow us to specify negative timeouts andRichard Sharpe2002-03-291-2/+2
| | | | | | | | | | | | thus tell the smblib stuff that it is OK if a packet does not arrive.
| * | After consulting with Andrew & others, ported HEAD winbindd into 2.2.x.Jeremy Allison2002-03-228-33/+328
| | | | | | | | | | | | | | | | | | This winbindd has *much* greater stability and has been more tested than the old 2.2.x one. Big change though.... Jeremy.
| * | Correctly increment offset in cli_smbwrite.Jeremy Allison2002-03-201-0/+2
| | | | | | | | | | | | Jeremy.
| * | Test against W2K that we're doing large read/writes correctly (we are).Jeremy Allison2002-03-201-0/+9
| | | | | | | | | | | | | | | At least with 14 word writes. Jeremy.
| * | Use the noduplicates namequery.Jeremy Allison2002-03-191-5/+69
| | | | | | | | | | | | Jeremy.
| * | Looks a big change but isn't.Jeremy Allison2002-03-185-12/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | Finally (now it's going away of course... :-) got rid of the horror that is dos_to_unix(XXX,BOOL) - modifying the target. Replaced with dos_to_unix_static that always returns a static string and dos_to_unix which always modifies the string in place. MUCH CLEANER ! Made VFS interfaces const clean. Jeremy.
| * | No real meat to this commit. Mostly format updates and removedGerald Carter2002-03-121-313/+217
| | | | | | | | | | | | | | | cli_spoolss_routerreplyprinter() as that is going to rpc_client/cli_spoolss_notify.c due to linking dependencies.
| * | Merge in the locking changes from HEAD. Added "inherit acls" parameter,Jeremy Allison2002-03-111-0/+58
| | | | | | | | | | | | | | | no code yet. Jeremy.
| * | first pass at inplementing SPOOLSS_ROUTERREPLYPRINTER. This is only theGerald Carter2002-03-081-0/+52
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | parsing and the client routines. I have some hacked server code that makes the Win2k Printers folder display the updated driver name when changing settings via the properties page (ask me if this doesn't make sense), but it's too ugly too live. That will come later. Makefile.in simply include libsmb/cli_spoolss.o and related files into smbd (will need this for printer change notification).
| * | Added case statment for decoding enumprinters level 0 result.Tim Potter2002-03-081-0/+4
| | |
| * | Add missing error codes. Tify up libsmb error return.Jeremy Allison2002-03-051-1/+1
| | | | | | | | | | | | Jeremy.
| * | More connectathon fixes. srvsvc returns WERRORs not NTSTATUS codes.Jeremy Allison2002-03-051-1/+1
| | | | | | | | | | | | | | | Added aDIR mask for setfileinfo. Jeremy.
| * | Ensure that all methods of looking up and connecting to DC's workJeremy Allison2002-02-284-23/+31
| | | | | | | | | | | | | | | using identical logic. Remove the zero_ip global. Jeremy.
| * | bcopy must DIE ! Stop people creeping use of bcopy back into the codeJeremy Allison2002-02-262-3/+3
| | | | | | | | | | | | | | | (and yes I know who you are..... :-). Jeremy.
| * | merge from headHerb Lewis2002-02-161-2/+11
| | | | | | | | | | | | Try not to malloc -1 bytes (apx 4GB) when the data is already in error.
| * | really get rid of compiler warning this time :-)Herb Lewis2002-02-141-1/+1
| | |
| * | get rid of compiler warningHerb Lewis2002-02-141-1/+1
| | |
| * | * fix smbd crash when netbios session request failsGerald Carter2002-02-133-4/+9
| | | | | | | | | | | | | | | | | | | | | from spoolss_connect_to_client(). * Added check against running cli_errstr() against an uninitialised cli_state struct
| * | reformatGerald Carter2002-02-131-37/+38
| | |
| * | Fix from Michael Steffens <michael_steffens@hp.com> to make signalJeremy Allison2002-01-311-1/+1
| | | | | | | | | | | | | | | | | | processing work correctly in winbindd. This is a really good patch that gives full select semantics to the Samba modified select. Jeremy.
| * | Don't clear a printer handle before passing it to the close fn (D'oh !).Jeremy Allison2002-01-231-1/+1
| | | | | | | | | | | | Jeremy.
| * | Merged Martin's RAP names.Jeremy Allison2002-01-221-20/+24
| | | | | | | | | | | | Jeremy.
| * | fixes to check asprintf returnSimo Sorce2002-01-191-10/+13
| | | | | | | | | | | | thanks to Andreas Moroder for spotting them
| * | Allow for winbind separator in connects. Patch from Alexander Bokovoy ↵Jeremy Allison2002-01-181-1/+1
| | | | | | | | | | | | | | | | | | <a.bokovoy@sam-solutions.net>. Jeremy.
| * | Merge errormap typo fix.Jeremy Allison2002-01-171-1/+1
| | | | | | | | | | | | Jeremy.
| * | Fixup the use of %S in the homes share. When we're doing the substitue theJeremy Allison2002-01-161-2/+2
| | | | | | | | | | | | | | | | | | | | | new snum doesn't exist yet, so we can't substitute based on it - we get servicename being "homes". Renamed XXX_NOT_CHANGED constants to SMB_XXX_NOT_CHANGED. Jeremy.
| * | Fixup error mapping so we have only one table containing errno -> dos error ↵Jeremy Allison2002-01-161-0/+1
| | | | | | | | | | | | | | | | | | | | | -> NT STATUS maps. Fixes problem with disk full returning incorrect error. Jeremy.
| * | Alphabetize, added altname cmd.Jeremy Allison2002-01-162-0/+65
| | | | | | | | | | | | Jeremy.
| * | Check malloc fixes from andreas moroder <claudiamoroder@st-ulrich.suedtirol.net>Jeremy Allison2002-01-151-3/+2
| | | | | | | | | | | | Jeremy.
| * | Added code into smbclient to test the UNIX extensions. They seem to workJeremy Allison2002-01-151-10/+173
| | | | | | | | | | | | | | | fine.... Jeremy.
| * | bin/rpcclient pip -c "setprinterdata q1 test2 value"Gerald Carter2002-01-111-16/+50
| | |
| * | Changed the macros in byteorder to be const safe by default. This meansJeremy Allison2002-01-119-60/+60
| | | | | | | | | | | | | | | | | | | | | | | | we can't use the CVAL(a,b) = x form but must use SCVAL(a,b,x). This gets rid of most of the const warnings that have been plaguing us for some time now. Yes, I intend to add this to HEAD also once I've fixed the printer issue. Jeremy.
| * | few quick fixes to make enumprinters, getprinter workGerald Carter2002-01-111-14/+12
| | |
| * | Sync up with HEAD changes.Jeremy Allison2002-01-111-4/+18
| | | | | | | | | | | | Jeremy.
| * | Backport the ERRgeneral changes 'cos Tim's too lazy to do it even whenJeremy Allison2002-01-072-1/+34
| | | | | | | | | | | | | | | I ask nicely :-) :-). Jeremy.
| * | Fix new errormap table..... This looks good.Jeremy Allison2002-01-032-407/+430
| | | | | | | | | | | | Jeremy.
| * | Fix clistr_pull error with unicode and -1 src_len. Stopped smbclient -LJeremy Allison2002-01-032-4/+2
| | | | | | | | | | | | | | | from working. Jeremy.
| * | comile error and warnings on IRIXHerb Lewis2002-01-022-5/+5
| | |
| * | configure configure.in: Updated with HEAD unicos stuff.Jeremy Allison2002-01-021-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | libsmb/errormap.c: Merge from HEAD - correct error table. include/rpc_samr.h rpc_server/srv_samr_nt.c: Make user enumeration work for w2k and win9x. This means different return sizes depending on client bugs. This sucks :-(. Jeremy.
| * | backport from head, passdb backends are a bit different (I've seen only the ↵Simo Sorce2001-12-301-5/+3
| | | | | | | | | | | | ldap init fns) so I leave to other (jeremy, jerry ?) to backports the mods if they think it is ok.