summaryrefslogtreecommitdiffstats
path: root/source/smbwrapper/smbw.h
Commit message (Collapse)AuthorAgeFilesLines
* fixed problems with PWD - we no longer use the PWD env variableAndrew Tridgell1998-10-231-2/+0
| | | | | | instead the shared variable area is used. this fixes problems with /bin/sh under solaris
* - don't use env variables for passwords and usernames (yeah!)Andrew Tridgell1998-10-191-1/+0
| | | | | | - added a shared variable area based on a unlinked open file, and implement a general get/set interface to it - cache hostname lookups and master ip lookups in shared variable area
* use 1 second resolution calls if possibleAndrew Tridgell1998-10-081-0/+1
|
* implemented attribute mapping and chmod. file attributes are mapped inAndrew Tridgell1998-10-061-2/+2
| | | | the same manner as smbd. See the README for a full explanation.
* add support for dup() and dup2()Andrew Tridgell1998-10-041-3/+9
|
* modified cli_read() and cli_write() to issue multiple outstandingAndrew Tridgell1998-10-041-0/+1
| | | | | | | | | read/write requests for large reads. up to max_mux requests may be outstanding. This gives _much_ better throughput and should allow smbsh to saturate just about any network. this is an implementation of the "fast SMB" method I described on the CIFS list a couple of months back.
* use dummy file descriptors opened on /dev/null to ensure that the smbwAndrew Tridgell1998-10-041-2/+1
| | | | file descriptor allocation order is identical to the kernels.
* more smbw cleanups.Andrew Tridgell1998-10-041-0/+1
| | | | | | - cleaned up prototyping. Unfortunately we can't auto-prototype wrapped.c because it replaces system functions. - split stat functions into smbw_stat.c
* - split smbw directory code into smbw_dir.cAndrew Tridgell1998-10-041-0/+26
| | | | | - fixed a bug in the handling of multiple connections to different servers
* added a bit more to the docsAndrew Tridgell1998-10-031-1/+1
|
* added lseek() to smbwrapperAndrew Tridgell1998-10-031-1/+1
|
* added basic chmod(), chown() and utime() support (not fullyAndrew Tridgell1998-10-031-0/+1
| | | | | | | implemented). this is enough to be able to edit files using emacs on the smbwrapper filesystem
* lots of improvements to smbwrapper. It now works with Samba, Win95 andAndrew Tridgell1998-10-031-0/+2
| | | | WinNT servers, and correctly lists share names in /smb/SERVER/
* the guts of the smbwrapper code. I may change the layout of this atAndrew Tridgell1998-10-021-0/+28
some stage.