summaryrefslogtreecommitdiff
path: root/source3/smbwrapper/smbw.c
AgeCommit message (Collapse)AuthorFilesLines
1998-10-07do an anonymous login if the username/password is rejected.Andrew Tridgell1-1/+3
(This used to be commit 0ee3e0c62378bdf7a8e145de0727ea85763af95a)
1998-10-06implemented unix semantics for rename in smbwrapperAndrew Tridgell1-4/+26
(This used to be commit a5c18f9c82f5f76b00ff29c5668b4f0d3e8d6bd0)
1998-10-06added a wrapper for fork()Andrew Tridgell1-0/+69
in a fork we have to close all server connections otherwise we can end up with two processes writing to the same socket. (This used to be commit b7ecbca3aff34ff06a445e5ee39efba48261b7e8)
1998-10-06fixed a bug in time setting (utime() call)Andrew Tridgell1-2/+5
(This used to be commit 2f4506a33c7015f2a176929d794c6c40f1433591)
1998-10-06implemented attribute mapping and chmod. file attributes are mapped inAndrew Tridgell1-3/+8
the same manner as smbd. See the README for a full explanation. (This used to be commit 0a5dcddd3fa23081d7cd214acc32b8046125a74e)
1998-10-06added SMBW_PREFIX environment variable (allowing you to specify rootAndrew Tridgell1-16/+26
of smb filesystem) fixed "cd /smb" bug updated README with full list of environment variables. (This used to be commit 71acf338d721b106af8d80e7b3a6f318ab75da8b)
1998-10-06use smbw_errno() not smbw_error()Andrew Tridgell1-1/+1
(This used to be commit be7ae2a4e75aab0a71be10eb39cef9434dedae2a)
1998-10-05- fixed errno return in smbw_open()Andrew Tridgell1-4/+1
- updated README a bit - fixed Linux compilation of utime() (This used to be commit 4bacf32755f8012110797f7aae2b3e1e0e2f537b)
1998-10-05got smbwrapper working on IRIX 6.4. Things got a bit tricky,Andrew Tridgell1-2/+3
especially as the headers get the syscall numbers wrong! (This used to be commit a5405f1ab069a3123a819311a87ca84f2c5f0fea)
1998-10-05ported smbwrapper to SunOS4. It seems to work. pity so many binaries onAndrew Tridgell1-5/+22
my SunOS box are statically linked. (This used to be commit 541f1c421127334817b73388f4ccb9cc0841dd4e)
1998-10-05got rid of all assembly code and gcc special features. I'm hoping toAndrew Tridgell1-31/+0
get smbsh working with the normal sun compiler (This used to be commit c6ee915336e1533e1f4f10f14b3d57de01f8fe96)
1998-10-05removed requirement of having a smb.conf for smbwrapper to work.Andrew Tridgell1-3/+1
(This used to be commit af58bf2ff8ddbf974dbafa36cf1b679226371e09)
1998-10-05- added pread pread64 pwrite pwrite64 and open64Andrew Tridgell1-3/+71
- fixed utime() for null tbuf (This used to be commit 9047bf59b402de40e520bfc2afa1cbfad5508f72)
1998-10-05added a function set_maxfiles() to set our file rlimit to the maxAndrew Tridgell1-0/+2
possible and return the max. (This used to be commit 7a7b5ee1689b6be57752d176c7b77a2f1b453486)
1998-10-04- modified resolve_name() to take a name_typeAndrew Tridgell1-2/+6
- cleaned up resolve_name() (split into separate functions for each resolver) - if can't find local master then use #1B name - support listing of foreign workgroups in /smb/ (This used to be commit a4e607c17d1119925c9d0e1d05e0fe81e9a2d1aa)
1998-10-04support NetServerEnum in smbwrapper. You can now do a ls in /smb/ andAndrew Tridgell1-4/+27
it will list all servers in your workgroup. You can set your workgroup with the SMBW_WORKGROUP environment variable. (This used to be commit 64699810e2d94e8648a0a3341b1cc826d4e8bfd9)
1998-10-04use *SMBSERVER convention in smbwrapper to allow us to connect toAndrew Tridgell1-3/+9
servers that we don't know the netbios name of. (This used to be commit 147d49dade3901835b5d60b02c495bea544ff5e9)
1998-10-04add support for unlink() on printer shares in smbwrapper. unlink()Andrew Tridgell1-1/+9
will remove the job from the pirnt queue. (This used to be commit 7bd738c30a09a211fd14a8544309efeec17c66f5)
1998-10-04added support for printing via smbwrapperAndrew Tridgell1-2/+1
You can print using "cp filename /smb/SERVER/PRINTER/jobname" You can list the current printqueue using ls (This used to be commit 080fb61b69620e26e8122705383dc2bd0468a519)
1998-10-04add support for dup() and dup2()Andrew Tridgell1-17/+145
(This used to be commit c5210cb0fffd406ef1809db8644b299bb661df4d)
1998-10-04refuse symlinks to or from a smb pathAndrew Tridgell1-2/+2
(This used to be commit 83e93d2a4493546cb481f5c8187c64207b5901d1)
1998-10-04modified cli_read() and cli_write() to issue multiple outstandingAndrew Tridgell1-2/+3
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. (This used to be commit c728d1c5d6e4626d2f8e318eab4df32acc8cb505)
1998-10-04use dummy file descriptors opened on /dev/null to ensure that the smbwAndrew Tridgell1-6/+10
file descriptor allocation order is identical to the kernels. (This used to be commit 60a683465647932f7241ba9f92443d5e5294e20b)
1998-10-04more smbw cleanups.Andrew Tridgell1-152/+3
- cleaned up prototyping. Unfortunately we can't auto-prototype wrapped.c because it replaces system functions. - split stat functions into smbw_stat.c (This used to be commit 04e92e692e49234df6fbbfd07a33b315ed62f0de)
1998-10-04- split smbw directory code into smbw_dir.cAndrew Tridgell1-619/+21
- fixed a bug in the handling of multiple connections to different servers (This used to be commit a9f9d8c3d8c18a5ab4c18c1348ee9c8d643880fa)
1998-10-04simplied the layout of the smbwrapper code. All those 3 line filesAndrew Tridgell1-10/+11
were getting unwieldy (This used to be commit a59d4e93da2cb2bb61a632ce85af0888a87a03e2)
1998-10-04we need to do a load_interfaces() at startup to support broadcastAndrew Tridgell1-0/+2
resolution of names. (This used to be commit c0931b6770dd822f156f388f37fb5b4abfcad51f)
1998-10-03drat.Andrew Tridgell1-5/+74
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. (This used to be commit e3fd861590dd27cc643c2d8d0cb5a5651c84d9ac)
1998-10-03added fchdir() supportAndrew Tridgell1-2/+29
(This used to be commit a42729dbf5414f54e5d623514533958c62ada5f6)
1998-10-03fixed vi on smbwrappper (it was a problem in cli_read())Andrew Tridgell1-1/+1
(This used to be commit 1dcc84b942d4669f978aebdeaf85ea609c2b732f)
1998-10-03fixed wrapper for access(). This gets xedit working.Andrew Tridgell1-1/+1
(This used to be commit 3c839a523183c163db0d14cf1a3aac47ffafd496)
1998-10-03support getcwd() in smbwrapperAndrew Tridgell1-0/+36
(This used to be commit d516ee383c287550a5953cf5ea1cd69cc957e1aa)
1998-10-03added mkdir() and rmdir() supportAndrew Tridgell1-0/+87
(This used to be commit ce748e5ea94380147a01de8235b343c7e2852bee)
1998-10-03added simple device/inode number support based on a checksum of theAndrew Tridgell1-1/+17
filename (This used to be commit 5674fb4e9dc4d92213d763c8cecd26efc23a9720)
1998-10-03added lseek() support for directoriesAndrew Tridgell1-3/+46
(This used to be commit 67ca971b0b00b5256b0af2c1c5777c393f9cef0b)
1998-10-03added lseek() to smbwrapperAndrew Tridgell1-6/+53
(This used to be commit 752e90b24f37d4697b87c65a53b45799c21ecab7)
1998-10-03added basic chmod(), chown() and utime() support (not fullyAndrew Tridgell1-3/+158
implemented). this is enough to be able to edit files using emacs on the smbwrapper filesystem (This used to be commit e5c3f36ef2e8fc0195d70b2f5db7d88d9ae4507a)
1998-10-03added unlink() and rename() support to smbwrapperAndrew Tridgell1-50/+149
(This used to be commit b85d96144728e8a29c7c1114462e28bf3b144b80)
1998-10-03lots of improvements to smbwrapper. It now works with Samba, Win95 andAndrew Tridgell1-66/+214
WinNT servers, and correctly lists share names in /smb/SERVER/ (This used to be commit 1ea349728b8984bfe5cf5df41a87efbe17ff5ccd)
1998-10-02the guts of the smbwrapper code. I may change the layout of this atAndrew Tridgell1-0/+1005
some stage. (This used to be commit 3f34a3cac817de19d227c36bc792db8b2c3798f9)