summaryrefslogtreecommitdiff
path: root/source4/client/cifsddio.c
Commit message (Collapse)AuthorAgeFilesLines
* s4: popt: Global replace of cmdline_credentials -> ↵Jeremy Allison2017-05-111-6/+7
| | | | | | | | | | | popt_get_cmdline_credentials(). Add one use of popt_set_cmdline_credentials(). Fix 80 column limits when cmdline_credentials changes to popt_get_cmdline_credentials(). Signed-off-by: Jeremy Allison <jra@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org>
* Finish removal of iconv_convenience in public API's.Jelmer Vernooij2010-05-181-6/+0
|
* s4: ran minimal_includes.pl on source4/clientAndrew Tridgell2009-10-201-1/+0
|
* s4:lib/tevent: rename structsStefan Metzmacher2008-12-291-3/+3
| | | | | | | | | | | | | | | | | | | | list="" list="$list event_context:tevent_context" list="$list fd_event:tevent_fd" list="$list timed_event:tevent_timer" for s in $list; do o=`echo $s | cut -d ':' -f1` n=`echo $s | cut -d ':' -f2` r=`git grep "struct $o" |cut -d ':' -f1 |sort -u` files=`echo "$r" | grep -v source3 | grep -v nsswitch | grep -v packaging4` for f in $files; do cat $f | sed -e "s/struct $o/struct $n/g" > $f.tmp mv $f.tmp $f done done metze
* Remove another use of global_loadparm.Jelmer Vernooij2008-11-021-6/+12
| | | | | | Eventually, we should move some of these parameters into a separate struct (perhaps into smb_transport_options?), to avoid the long lists of parameters.
* Fix build for make everything.Jelmer Vernooij2008-11-021-1/+7
|
* Eliminate another instance of global_loadparm.Jelmer Vernooij2008-10-241-6/+12
|
* Cope with API changes.Jelmer Vernooij2008-09-301-6/+11
|
* Remove more event_context_init() uses from function calls within deep down ↵Simo Sorce2008-04-211-4/+8
| | | | | | | | the code. Make sure we pass around the event_context where we need it instead. All test but a few python ones fail. Jelmer promised to fix them. (This used to be commit 3045d391626fba169aa26be52174883e18d323e9)
* r26654: libcli/smb_composite: Rather than specifying each of the gazillion ↵Jelmer Vernooij2008-01-031-6/+10
| | | | | | options for SMB individually, just specify the smbcli_options struct. (This used to be commit 8a97886e24a4b969aa91409c06f423b71a45f6eb)
* r26644: Janitorial: Pass resolve_context explicitly to various SMB ↵Jelmer Vernooij2008-01-021-6/+11
| | | | | | functions, should help fix the build for OpenChange. (This used to be commit 385ffe4f4cc9a21a760c0f00410f56e2592fd507)
* r26409: Pass smb ports along.Jelmer Vernooij2007-12-211-4/+7
| | | | (This used to be commit 2833f320de1f1fd39c710ad0a61c3fa1bb1df31f)
* r25550: Convert to standard bool type.Jelmer Vernooij2007-10-101-23/+23
| | | | (This used to be commit 3ed7aba8e234ebbead10d78d2fc1c8a8274d516b)
* r25028: Fix more warnings.Jelmer Vernooij2007-10-101-9/+5
| | | | (This used to be commit 3aa7ee4a0d8837471deeaa1c5a1f4a0d2a14aa6e)
* r23792: convert Samba4 to GPLv3Andrew Tridgell2007-10-101-3/+2
| | | | | | There are still a few tidyups of old FSF addresses to come (in both s3 and s4). More commits soon. (This used to be commit fcf38a38ac691abd0fa51b89dc951a08e89fdafa)
* r14256: - rename smb_file -> smb_handleStefan Metzmacher2007-10-101-20/+20
| | | | | | | | - move it into the in/out substructs again - allow file.path only on smb_fileinfo/smb_setfileinfo metze (This used to be commit be6d5298a2cdb7e7c61d70471bad445645af5963)
* r14173: change smb interface structures to always useStefan Metzmacher2007-10-101-3/+3
| | | | | | | | | | | | | a union smb_file, to abtract - const char *path fot qpathinfo and setpathinfo - uint16_t fnum for SMB - smb2_handle handle for SMB2 the idea is to later add a struct ntvfs_handle *ntvfs so that the ntvfs subsystem don't need to know the difference between SMB and SMB2 metze (This used to be commit 2ef3f5970901b5accdb50f0d0115b5d46b0c788f)
* r13388: Report a more helpful error with malformed file options ofJames Peach2007-10-101-0/+5
| | | | | the form //server/share (ie. remote path missing). (This used to be commit 443677f58d4ba8d6aa2963ca5848d3e717ee2cac)
* r13362: Rename variables for better consistency.James Peach2007-10-101-55/+60
| | | | (This used to be commit dc20bb0ddc0824fc458e7fc4a9bce5059f4fc0d5)
* r13280: Tidy up formatting.James Peach2007-10-101-21/+46
| | | | (This used to be commit 531995000df77a54a4f2d7734e1ad33cd7cda37a)
* r13263: Check whether open(2) will accept the O_DIRECT flag. This should fix theJames Peach2007-10-101-1/+6
| | | | | build on NetBSD. (This used to be commit 7354de62a7fbf3921dfcb0bd865e89bdf1ef5bcd)
* r13255: New CIFS dd client for use in performance testing. The guts of this isJames Peach2007-10-101-0/+456
in client/cifsdd*, which implements a minimal implementation of dd. The IO path is careful to always perform IO at the requested block size. There is a very basic test suite in script/tests/test_cifsdd.sh which covers local and remote IO at a variety of block sizes. Added to lib/util_str.c is a small set of conv_str_*() functions to convert strings to the corresponding type. smbcli_parse_unc is modified to insert NULL terminators after its hostname and sharename parameters. This allows it to correctly parse a path of the form //foo/share/path/file. (This used to be commit cd2f94a65817bfae20ac21b730a2c42d8e581ab3)