summaryrefslogtreecommitdiffstats
path: root/source/libsmb/clidfs.c
Commit message (Collapse)AuthorAgeFilesLines
* r21889: * Pull from SAMBA-3_0_25 svn r21888Gerald Carter2007-03-201-133/+195
| | | | * Set version to 3.0.25pre2
* r21585: Start syncing the monster that will become 3.0.25pre1Gerald Carter2007-02-281-7/+9
| | | | | | | | Still todo: * release notes * few minor outstanding patches * additional idmap man pages
* r17355: go ahead and catch some changes from the 3.0.23 dev treeGerald Carter2006-08-011-1/+5
|
* r16418: Pull in more Klocwork fixes (up to r16415)Gerald Carter2006-06-201-3/+6
|
* r16254: pulling klocwork fixes for 3.0.23rc3 (current up to r16251)Gerald Carter2006-06-151-1/+1
|
* r14133: Fix Coverity bug # 140Volker Lendecke2006-03-101-2/+2
|
* r13316: Let the carnage begin....Gerald Carter2006-02-031-6/+16
| | | | Sync with trunk as off r13315
* r9958: revert last commit.Günther Deschner2005-09-021-1/+1
| | | | Guenther
* r9955: Fix misleading comments.Günther Deschner2005-09-021-1/+1
| | | | Guenther
* r8572: Remove crufty #define NO_SYSLOG as it's not used at all anymore.Tim Potter2005-07-191-2/+0
|
* r7339: only check for dfs proxy referrals when the server supports dfsGerald Carter2005-06-061-1/+1
|
* r6706: * fix bug that prevented smbclient from creating directories Gerald Carter2005-05-101-3/+11
| | | | | | on non-dfs paths * add patch from James Peach to remove use of uninitialized variables
* r6685: smbclient fixesGerald Carter2005-05-091-5/+64
| | | | | | * BUG 2680: copy files from an MSDFS win2k root share * BUG 2688: re-implement support for the -P (--port) option * support connecting to an 'msdfs proxy' share on a Samba server
* r5994: proper fix for smbclient and win98 file servers; check the WCT value ↵Gerald Carter2005-03-231-19/+1
| | | | in the tcon&X reply before setting the cli_state->dfsroot flag
* r5981: Hack to fix DFS code to work with Win98 server. JERRY PLEASE REVIEW ↵Jeremy Allison2005-03-221-1/+19
| | | | | | | | THIS ! I don't think this is correct - it just happens to work and fix bug #2530 to return all the files. Jeremy.
* r5835: Make smbclient obey the max protocol argument again.Jeremy Allison2005-03-161-1/+1
| | | | Jeremy.
* r5657: Fix uninitialized variable warningVolker Lendecke2005-03-051-1/+1
|
* r5578: get 'recurse; dir' working across multiple levels of dfs referrals Gerald Carter2005-02-261-15/+18
| | | | | | note that this does not handle the situation where the same \\server\share is mounted mutliple times in the dfs tree since I store a single mount path per struct cli_state *
* r5577: get recurse; dir working across single level dfs referralsGerald Carter2005-02-261-0/+53
|
* r5560: make sure session setup message is displayed after changes to client.cGerald Carter2005-02-251-2/+2
|
* r5545: move cli_cm_XXX() connection handling code to clidfs and out of ↵Gerald Carter2005-02-241-0/+278
| | | | client.c; client.c still maintains a pointer to the first connection so the change is fairly reansparent to other smbclient functions such as -L and -M
* r5542: fix a few more msdfs bugs in smbclient against both smbd and 2k dfs rootGerald Carter2005-02-241-4/+8
| | | | shares.
* r5521: allow smbclient to follow multiple leveles of dfs referrals (no loop ↵Gerald Carter2005-02-231-47/+10
| | | | checking currently)
* r5518: Add initial msdfs support to smbclient. Currently I can only Gerald Carter2005-02-231-28/+229
| | | | | | | | | | | | cd up and down the tree and get directory listings. Still have to figure out how to get a directory listing on a 2k dfs root. Also have to work out some issues with relative paths that cross dfs mount points. We're protected from the new code paths when connecting to a non-dfs root share ( the flag from the tcon&X is stored in the struct cli_state* )
* r5495: * add in some code from Mike Nix <mnix@wanm.com.au> for the SMBsplopenGerald Carter2005-02-221-0/+154
and SMBsplclose commands (BUG 2010) * clarify some debug messages in smbspool (also from Mike) my changes: * start adding msdfs client routines * enable smbclient to maintain multiple connections * set the CAP_DFS flag for our internal clienht routines. I actualy have a dfs referral working in do_cd() but that code is too ugly to live so I'm not checking it in just yet. Further work is to merge with vl's changes in trunk to support multiple TIDs per cli_state *.