summaryrefslogtreecommitdiff
path: root/source4/libcli/raw
Commit message (Collapse)AuthorAgeFilesLines
* libcli/smb: move smb2_create_blob code to libcli/smb/Stefan Metzmacher2009-08-121-7/+1
| | | | | | I want to use this in source3/smbd/ metze
* libcli: move some common SMB and SMB2 stuff into libcli/smb/Stefan Metzmacher2009-08-121-1/+1
| | | | | | This will hold code that's shared between source3 and source4. metze
* s4:libcli: move SMB2 Find constants to smb2_constants.hStefan Metzmacher2009-08-071-16/+0
| | | | metze
* s4:libcli/raw: we don't need to include "smb.h" explicitStefan Metzmacher2009-08-074-4/+0
| | | | metze
* s4:libcli/raw: also include smb2_constants.h into interfaces.hStefan Metzmacher2009-08-071-1/+2
| | | | metze
* fixed several places that unnecessarily take a reference to the event contextAndrew Tridgell2009-08-071-3/+2
| | | | | | | | | | | | | | | These references were triggering the ambiguous talloc_free errors from the recent talloc changes when the server is run using the 'standard' process model instead of the 'single' process model. I am aiming to move the build farm to use the 'standard' process model soon, as part of an effort to make our test environment better match the real deployment of Samba4. The references are not needed as the way that the event context is used is as the 'top parent', so when the event context is freed then all of the structures that were taking a reference to the event context were actually freed as well, thus making the references redundent.
* s4:libcli: move SMB2 lock flags to smb2_constants.hStefan Metzmacher2009-07-021-7/+0
| | | | metze
* s4: smbcli_transport_send hit the socket right away if possibleSam Liddicott2009-06-091-0/+7
| | | | | | | | | | | | | | | | | | [Metze; "make test" on git master outputs exactly the same test summary with our without this patch (apart from the "using seed" lines)] If the transport socket is writable, then push the queue along rather than wait until the caller returns back to the tevent loop. This strategy keeps the sockets piping hot, and is particularly good for cases where reading requests from one socket causes lots of writes on another socket, or where lots of writes are made in a batch. It doesn't matter if the socket is not writeable yet, packet_queue_run will return quite cheaply in such a case. Signed-off-by: Sam Liddicott <sam@liddicott.com> Signed-off-by: Stefan Metzmacher <metze@samba.org>
* s4:libcli/raw: initialy read the first 4 bytes onlyStefan Metzmacher2009-05-201-0/+1
| | | | metze
* s4:libcli: remember operating system and lan manager strings from session setupStefan Metzmacher2009-05-011-0/+3
| | | | metze
* s4:libcli/raw: write can return STATUS_BUFFER_OVERFLOW as a real errorStefan Metzmacher2009-05-011-1/+1
| | | | | | We should not try to parse the result if the status is not NT_STATUS_OK. metze
* libcli: fix a "not handled in switch" compile warningBjörn Jacke2009-04-221-0/+1
| | | | return NULL also for RAW_CLOSE_GENERIC
* s4:smb2: Add lease break support for SMB2.1Zach Loafman2009-04-011-1/+22
| | | | | Add the structures and marshalling for the lease break variants of the oplock break / oplock break ack messages.
* s4:smb2: Add rudimentary SMB2.1 lease support to libcliZach Loafman2009-03-281-0/+12
| | | | Add the structures, constants, and marshalling for SMB2.1 leases.
* s4: Use same function signature for convert_* as s3.Jelmer Vernooij2009-03-012-18/+22
|
* Add allow_badcharcnv argument to all conversion function, forJelmer Vernooij2009-03-012-5/+5
| | | | consistency with Samba 3.
* s4:libcli/raw: s/class/eclassStefan Metzmacher2009-02-021-3/+3
| | | | metze
* s4:libcliraw: s/private/private_dataStefan Metzmacher2009-02-024-7/+7
| | | | metze
* s4:libcli/raw: s/private/private_dataStefan Metzmacher2009-02-025-34/+34
| | | | metze
* util_str: setup the correct talloc name for stringsStefan Metzmacher2009-01-191-0/+2
| | | | | metze (partly from samba4wins tree 447e7f9532131117e896712db9def321c96718eb)
* s4:lib/tevent: rename structsStefan Metzmacher2008-12-294-13/+13
| | | | | | | | | | | | | | | | | | | | 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-022-1/+4
| | | | | | Eventually, we should move some of these parameters into a separate struct (perhaps into smb_transport_options?), to avoid the long lists of parameters.
* Remove another use of global_loadparm.Jelmer Vernooij2008-11-021-0/+2
|
* Move lp_*() calls a bit higher up the calls tack.Jelmer Vernooij2008-11-012-6/+11
|
* Fix prototype for attrib_string().Jelmer Vernooij2008-11-011-1/+1
|
* Remove unused include param/param.h.Jelmer Vernooij2008-10-248-8/+0
|
* Remove iconv_convenience argument from convert_string{,talloc}() butJelmer Vernooij2008-10-242-5/+4
| | | | make them wrappers around convert_string{,talloc}_convenience().
* Remove a few more usages of global_loadparm.Jelmer Vernooij2008-10-241-3/+2
|
* Eliminate another instance of global_loadparm.Jelmer Vernooij2008-10-243-2/+9
|
* Just hardcode workgroup to empty string, to avoid use ofJelmer Vernooij2008-10-241-4/+3
| | | | global_loadparm.
* Remove iconv_convenience parameter from simple string push/pullJelmer Vernooij2008-10-241-2/+2
| | | | functions.
* Make sure prototypes are always included, make some functions static andJelmer Vernooij2008-10-205-0/+5
| | | | remove some unused functions.
* Move SMB-specific attribute function to SMB client library.Jelmer Vernooij2008-10-191-0/+44
|
* Fix include paths to new location of libutil.Jelmer Vernooij2008-10-114-4/+4
|
* Pass session options around; saves another use of global_loadparm.Jelmer Vernooij2008-09-301-1/+3
|
* Pass options struct into session initialization functions rather thanJelmer Vernooij2008-09-301-4/+3
| | | | using global_loadparm.
* added the structure for LINK_INFORMATION setfileinfo callAndrew Tridgell2008-09-241-0/+13
|
* Move source4/lib/crypto to lib/crypto.Jelmer Vernooij2008-09-241-1/+1
|
* Merge branch 'master' of ssh://git.samba.org/data/git/sambaAndrew Tridgell2008-09-234-2/+22
|\
| * libcli/raw: real signing starts at seqnumber 2Stefan Metzmacher2008-09-231-0/+1
| | | | | | | | metze
| * libcli/raw: in SMB_SIGNING_ENGINE_BSRSPYL state it's ok to accept any signatureStefan Metzmacher2008-09-231-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Even if signing is mandatory. With NTLMSSP this happens for the session setup: request1 => BSRSPYL response1 => BSRSPYL request2 => BSRSPYL response2 => <SIGNATURE> and with krb5: request1 => BSRSPYL response1 => <SIGNATURE> metze
| * libcli/raw: give the caller the chance to do the signing checks on its own.Stefan Metzmacher2008-09-232-0/+10
| | | | | | | | metze
| * libcli/raw: give the caller the chance to prevent the talloc_free(req) in ↵Stefan Metzmacher2008-09-232-1/+8
| | | | | | | | | | | | the _recv functions metze
| * s4-nbt: use ../libcli/nbtGünther Deschner2008-09-231-1/+1
| | | | | | | | Guenther
* | added FULL_EA_INFORMATION setea callAndrew Tridgell2008-09-232-1/+20
|/
* Make SMB signing work with Windows 2008 and kerberos.Andrew Bartlett2008-09-061-4/+1
| | | | | | | Pinched from b53e6387e30010509034835acf88b91b380ff44a by metze. Andrew Bartlett (This used to be commit d55602e23e7947462cb402b20b2d354b96aa7ba3)
* libcli/raw: fix the special NTCREATE_OPTIONS_*_MASK valuesStefan Metzmacher2008-08-141-7/+20
| | | | | | | We now reuse ignored values for the ntvfs backend private flags. metze (This used to be commit 14eda93aeface307e1ffd1ea012d8f236fa78290)
* More 'must be ignored' options from the MS-SMB doc.Andrew Bartlett2008-07-181-20/+26
| | | | | | | | | | | Also in particular the 'sync' flags (which Samba has traditionally ignored). Thanks to Olivier Salamin <olivier.salamin@gmail.com> for pointing out more flags that needed to be handled. Andrew Bartlett (This used to be commit 370bb39cd79fe49efd36a1ceb3e896d386e6d3ce)
* Ignore and handle more NT Create & X options.Andrew Bartlett2008-07-161-3/+8
| | | | | | | | | | | | | | The MS-SMB document explains that some of these options should be ignored. The test proves it. /* Must be ignored by the server, per MS-SMB 2.2.8 */ /* Must be ignored by the server, per MS-SMB 2.2.8 */ If we implement HSM in samba4 (likely) we should honour this bit. /* Don't pull this file off tape in a HSM system */ Andrew Bartlett (This used to be commit 502739ff90d56d2c9aabe8e224317f6ceb175c17)
* libcli/raw: remove unused smb_raw_max_trans_data() functionStefan Metzmacher2008-07-071-12/+0
| | | | | metze (This used to be commit d235ce673705641e06b4ad5f5679e146b59a19e1)