summaryrefslogtreecommitdiffstats
path: root/source/libsmb/libsmbclient.c
Commit message (Collapse)AuthorAgeFilesLines
* Start of merge to 2_2_RELEASE branch for release.Jeremy Allison2002-04-301-11/+43
| | | | Jeremy.
* Move over to RELEASE branch.Jeremy Allison2002-02-011-1398/+1459
| | | | Jeremy.
* Sync-up with 2.2Jeremy Allison2001-07-061-7/+12
| | | | Jeremy.
* strchr and strrchr are macros when compiling with optimisation in gcc, so we ↵Andrew Tridgell2001-07-041-5/+5
| | | | can't redefine them. damn.
* The big character set handling changeover!Andrew Tridgell2001-07-041-4/+0
| | | | | | | This commit gets rid of all our old codepage handling and replaces it with iconv. All internal strings in Samba are now in "unix" charset, which may be multi-byte. See internals.doc and my posting to samba-technical for a more complete explanation.
* Fix a stupid typo ...Richard Sharpe2001-06-271-2/+2
|
* Fix up the problems with calling smbc_init multiple times.Richard Sharpe2001-06-071-0/+6
|
* 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 :-)
* More memory leaks fixed courtesy of Insure ...Richard Sharpe2001-03-281-11/+44
|
* One small Insure fix for a memory leak. More fixes to come perhaps ...Richard Sharpe2001-03-271-2/+52
| | | | | Also fixed an error return for smbc_rmdir so that we can distinguish between EACCES and ENOTEMPTY
* More SGI type fixes ...Richard Sharpe2001-03-091-5/+7
|
* Fix the definition and implementation of smbc_lseekdir ...Richard Sharpe2001-03-071-6/+7
|
* Implement smbc_lseekdir, but it will have to change ... because it has theRichard Sharpe2001-03-061-1/+52
| | | | wrong interface defn.
* smb.h: add one error code for no such printer jobRichard Sharpe2001-03-051-3/+28
| | | | libsmbclient.c: fix problems with return codes on smbc_unlink_print_job
* Fix two problems identified by the test suite, one a major oneRichard Sharpe2001-03-011-3/+61
| | | | where I was indexing through a NULL pointer :-(
* Fix some errors uncovered in libsmbclient by the test suiteRichard Sharpe2001-02-261-115/+42
| | | | | Fix some problems with unused variables and reaching the end of a nonvoid function
* the unicode conversion of our client code is complete enough to beAndrew Tridgell2001-02-211-6/+0
| | | | | | enabled by default you can disable it by setting the environment variable CLI_FORCE_ASCII
* Opps, last one did not commit the correct changes ... Here they are.Richard Sharpe2001-02-191-7/+31
| | | | | | This now uses a lookup on <DOMAIN><1D> and then does a name status query to the IP address returned to find the name of the server. Seems to work well against Samba, Win9X, WinNT and Win2K.
* Fixes to libsmbclient so it will work when browsing real Windows systems whichRichard Sharpe2001-02-181-2/+2
| | | | | | only respond to port 138 when dealing with NetBIOS datagrams. We use the unexpected packed database.
* Added commented/documented version of libsmbclient.h and fixed up a smallRichard Sharpe2001-02-121-3/+1
| | | | problem in libsmbclient.c where we no longer pass the workgroup.
* Fix problems in libsmbclient with pring job struct plus add implementationRichard Sharpe2001-02-061-0/+96
| | | | of last two print routines ...
* Implement two printing related functions and start the remaining two.Richard Sharpe2001-02-051-0/+63
|
* Fix some further small bugs in libsmbclient to make it pass theRichard Sharpe2001-02-041-7/+56
| | | | Caldera test suite and start to add the printing routines.
* Fix some bugs and prepare for some other bug fixes ...Richard Sharpe2001-01-291-6/+67
|
* Fix a problem with smbc_unlink on directories where it was returning EACCESRichard Sharpe2001-01-241-1/+39
| | | | | instead of EPERM and a problem with SMBC_OPEN where it ignored an error from the underlying cli_open routine and cheerfully returned a bogus FD.
* Fixed bugs relating to Win2K and the need for a codepage so that unicodeRichard Sharpe2001-01-141-3/+12
| | | | strings can be handled correctly.
* Some more bug fixes plus implementations of smbc_mkdir and smbc_rmdir,Richard Sharpe2001-01-121-0/+157
| | | | | | both tested ... More later.
* Many bug fixes to the libsmbclient.c code plusRichard Sharpe2001-01-121-38/+137
| | | | | | | - an implementation of smbc_readdir - extensions to tree.c to show files in a second window - changes to auth_fn to provide buffers for username, password, etc from caller rather than callee
* Add support for logging to wherever smb.conf specifies.Richard Sharpe2001-01-081-2/+8
|
* More bug fixen ...Richard Sharpe2001-01-071-2/+2
|
* More fixes and implementation bits and pieces for libsmbclientRichard Sharpe2001-01-071-11/+161
|
* Fix some more bugs in libsmbclient.c and add functionality to tree.cRichard Sharpe2001-01-061-0/+40
|
* Fix a minor problem with listing servers in a workgroup and add aRichard Sharpe2001-01-061-3/+11
| | | | gtk+ test application that tests out some of this stuff ...
* The latest changes to libsmbclient ...Richard Sharpe2001-01-051-21/+455
| | | | | | | | It can now do a directory listing for workgroups, servers, and shares, and, with a bit more effort, it will be able to list directories and files. I also does not request a username and password for the IPC$ share, but it should if the first attempt to connect fails.
* First pass at the libsmbclient code ...Richard Sharpe2000-12-261-0/+1140
This code handles the basic stuff and compiles and links under Linux, but I do not know about any other operating systems. Now onto directory listing routines, including those that list workgroups, servers, etc. Nothing is built automatically yet, you have to make client/testsmbc to build the library and test program. Also, no make install targets are defined for libsmbclient.so as yet, either. Would be good if people test on operating systems other than Linux.