summaryrefslogtreecommitdiffstats
path: root/source/smbwrapper
Commit message (Collapse)AuthorAgeFilesLines
...
* refuse symlinks to or from a smb pathAndrew Tridgell1998-10-043-2/+17
|
* modified cli_read() and cli_write() to issue multiple outstandingAndrew Tridgell1998-10-043-3/+5
| | | | | | | | | 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-043-11/+21
| | | | file descriptor allocation order is identical to the kernels.
* more smbw cleanups.Andrew Tridgell1998-10-046-162/+226
| | | | | | - 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-043-619/+658
| | | | | - fixed a bug in the handling of multiple connections to different servers
* simplied the layout of the smbwrapper code. All those 3 line filesAndrew Tridgell1998-10-0431-1066/+555
| | | | were getting unwieldy
* we need to do a load_interfaces() at startup to support broadcastAndrew Tridgell1998-10-041-0/+2
| | | | resolution of names.
* use __XXXdir() instead of __libc_XXXdir()Andrew Tridgell1998-10-036-26/+5
|
* drat.Andrew Tridgell1998-10-037-6/+261
| | | | | | | on Linux 2.0 libc detects the lack of getdents in the kernel and used opendir() etc. so we need to implement those ... it would be needed for a port to others OSes anyway I suppose.
* added fchdir() supportAndrew Tridgell1998-10-034-4/+66
|
* fixed vi on smbwrappper (it was a problem in cli_read())Andrew Tridgell1998-10-032-4/+2
|
* fixed wrapper for access(). This gets xedit working.Andrew Tridgell1998-10-031-1/+1
|
* support getcwd() in smbwrapperAndrew Tridgell1998-10-033-1/+65
|
* added mkdir() and rmdir() supportAndrew Tridgell1998-10-034-0/+151
|
* added simple device/inode number support based on a checksum of theAndrew Tridgell1998-10-031-1/+17
| | | | filename
* added a bit more to the docsAndrew Tridgell1998-10-033-14/+25
|
* added lseek() support for directoriesAndrew Tridgell1998-10-033-3/+82
|
* added lseek() to smbwrapperAndrew Tridgell1998-10-032-7/+54
|
* added basic chmod(), chown() and utime() support (not fullyAndrew Tridgell1998-10-036-3/+255
| | | | | | | implemented). this is enough to be able to edit files using emacs on the smbwrapper filesystem
* added unlink() and rename() support to smbwrapperAndrew Tridgell1998-10-039-57/+227
|
* lots of improvements to smbwrapper. It now works with Samba, Win95 andAndrew Tridgell1998-10-038-66/+271
| | | | 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-0219-0/+1700
some stage.