summaryrefslogtreecommitdiffstats
path: root/source3
Commit message (Collapse)AuthorAgeFilesLines
* merged build: Remove SWIG checks, set flags for shared Samba 4 build.Jelmer Vernooij2008-12-221-6/+14
|
* s3:loadparm/docs: Set default for "ldap ssl" to "start tls".root2008-12-211-1/+1
| | | | | | | This has been discussed on samba-technical before. 3.3 and newer only! Karolin
* s3: loadparm: Clean-up list of parameters.Karolin Seeger2008-12-211-8/+1
| | | | | | We don't need to list several combinations of lowercase and uppercase here. Karolin
* Extend the chain1 test with write&xVolker Lendecke2008-12-191-2/+21
|
* Add a torture test simulating Windows write behaviourVolker Lendecke2008-12-191-1/+81
| | | | Jeremy, enjoy :-)
* Make smbclient "put" use cli_pushVolker Lendecke2008-12-191-37/+31
| | | | | This should fill the TCP socket even beyond the smbclient io_bufsize, very much like smbclient "get" should do it since 3.2
* Add async cli_write_andx and cli_pullVolker Lendecke2008-12-192-0/+425
|
* Fix bug #5986 - Editing a stream is broken (rename problems).Jeremy Allison2008-12-192-11/+14
| | | | Jeremy.
* Fix setting smb_len for huge write&x callsVolker Lendecke2008-12-191-1/+14
|
* Add the cli_wct_ofs routine to calculate the offset for write&xVolker Lendecke2008-12-192-0/+33
|
* Remove the direct inbuf reference from construct_reply_common()Volker Lendecke2008-12-192-10/+11
|
* Add a doxygen comment line I forgot to mergeVolker Lendecke2008-12-191-0/+1
|
* Convert cli_request->outbuf to uint8_tVolker Lendecke2008-12-192-15/+17
|
* For large smbwrite&x, we need more than 64k bccVolker Lendecke2008-12-192-6/+6
|
* Add some commentsVolker Lendecke2008-12-191-0/+22
| | | | | | If it takes more than 10 seconds to understand the code you've written yourself less than a year ago, it's time for comments or refactoring. I couldn't find a way to refactor that cleanly, so add comments :-)
* Fix the padding calculation in smb_splice_chain for "bytes_padding!=0"Volker Lendecke2008-12-191-1/+1
|
* Pass "bytes_alignment" up through cli_request_sendVolker Lendecke2008-12-197-10/+14
| | | | This parameter makes smb_spice_chain add padding before the bytes field
* Fix a "ignoring function call result" warningVolker Lendecke2008-12-191-1/+6
|
* Prefer network writes over readsVolker Lendecke2008-12-191-32/+33
| | | | | | If we really want to keep the pipe busy, we need to write everything we have as early as possible, giving the kernel the chance to get rid of the buffers quickly :-)
* Move some bytes from data to text, make use of the ARRAY_SIZE macroVolker Lendecke2008-12-191-2/+2
| | | | | Probably pointless, but it doesn't add complexity and it is fun to see bss and data shrink :-)
* Factor out cli_write_max_bufsizeVolker Lendecke2008-12-191-25/+36
|
* Remove two write-only variablesVolker Lendecke2008-12-191-8/+0
| | | | If someone wants those stats, please don't use globals :-)
* Make cli_negprot asyncVolker Lendecke2008-12-192-50/+101
|
* Make cli_negprot return NTSTATUS instead of boolVolker Lendecke2008-12-1913-42/+69
|
* cli_negprot_send -> cli_negprot_sendsyncVolker Lendecke2008-12-193-3/+3
|
* Merge branch 'master' of ssh://jra@git.samba.org/data/git/sambaJeremy Allison2008-12-18122-429/+28822
|\
| * Fix bug #5980 - Race condition when granting level2 oplocks can cause break ↵Jeremy Allison2008-12-181-4/+27
| | | | | | | | | | | | notify to be missed. Jeremy.
| * s3: Add statvfs implementation to the onefs vfs moduleAravind Srinivasan2008-12-171-0/+28
| |
| * Fix bug #5979 - Level 2 oplocks being granted improperly,Jeremy Allison2008-12-173-71/+124
| | | | | | | | Jeremy.
| * s3-ntsvcs: remove last traces of hand-marshalled NTSVCS.Günther Deschner2008-12-177-208/+4
| | | | | | | | Guenther
| * s3-ntsvcs: remove old _PNP_GetDeviceList.Günther Deschner2008-12-173-72/+0
| | | | | | | | Guenther
| * s3-ntsvcs: use pidl for _PNP_GetDeviceList.Günther Deschner2008-12-172-39/+30
| | | | | | | | Guenther
| * s3: refactor _netr_LogonControl{2,2Ex} server side.Günther Deschner2008-12-171-28/+32
| | | | | | | | Guenther
| * Fix a valgrind errorVolker Lendecke2008-12-171-1/+2
| | | | | | | | | | | | | | | | | | | | | | Reported by naga_kishore_kommuri@yahoo.com Derrel, please check! Thanks, Volker (cherry picked from commit 3356b95f72e26ede4ab16a12c334be90b8b1a639)
| * s3/smb.h: Remove unused LDAP_SSL_ON.Karolin Seeger2008-12-171-1/+1
| | | | | | | | | | | | | | | | LDAP_SSL_ON is not defined at all. Ldaps can be used by specifying an ldaps URL using the "passdb backend" parameter. Karolin
| * s3/loadparm.c: Change default value for "ldap ssl".Karolin Seeger2008-12-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | LDAP_SSL_ON is not defined at all. That's why the actual default value was "" for a long time. Set a more sensible default value without chnging the default behaviour. -----8<------------------snip--------------8<-------------- user@host:/data/git/samba/v3-0-test/source> git grep LDAP_SSL_ON | cat include/smb.h:enum ldap_ssl_types {LDAP_SSL_ON, LDAP_SSL_OFF, LDAP_SSL_START_TLS}; param/loadparm.c: Globals.ldap_ssl = LDAP_SSL_ON; ----->8------------------snap-------------->8-------------- It's the same in 3.2 and 3.3 series. Karolin
| * s4:lib/tevent: add lib/events/ compat and let things compileStefan Metzmacher2008-12-172-2/+3
| | | | | | | | metze
| * net luaVolker Lendecke2008-12-174-4/+401
| | | | | | | | | | | | | | | | This adds a lua command line interpreter with some sample code how to build your own data types based on our internal data types. Not meant as the final word, but as a playground for experiments for people. Might be removed later when we find this turns out to be too awkward.
| * Compile libluaVolker Lendecke2008-12-173-0/+82
| |
| * Add the Lua distibution from http://www.lua.org/ftp/lua-5.1.4.tar.gzVolker Lendecke2008-12-17100-0/+28089
| | | | | | | | | | | | | | | | Available under the MIT license. Adding it to see how the build farm likes it. They claim to be 100% pure ANSI C and compile everywhere. Lets see. If it breaks badly, we can remove it again.
* | Comment out the parent inheritance code (this is incorrect) as wasJeremy Allison2008-12-182-0/+4
|/ | | | | done for POSIX ACLs. Jeremy.
* (Fixed) Final part of fix for bug #5953 - smbclient crashes: cli_list_new ↵Kai Blin2008-12-161-4/+5
| | | | segmentation fault (with NAS-BASIC server).
* Revert "Final part of fix for bug #5953 - smbclient crashes: cli_list_new ↵Jeremy Allison2008-12-161-24/+683
| | | | | | | | segmentation fault (with NASBASIC server)." Error in commit ! This reverts commit bbd5824140992ea457d4270ee77018ebb367abc9.
* Final part of fix for bug #5953 - smbclient crashes: cli_list_new ↵Kai Blin2008-12-161-683/+24
| | | | segmentation fault (with NASBASIC server).
* Merge branch 'master' of ssh://git.samba.org/data/git/sambaJelmer Vernooij2008-12-162-12/+11
|\
| * commit b520befe6f51644d20434add9864d7a2fa30aa2eSATOH Fumiyasu2008-12-162-12/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | Author: SATOH Fumiyasu <fumiyas@osstech.co.jp> Date: Wed Dec 17 00:42:25 2008 +0900 libsmbclient: Fix SIGBUS on non-x86 CPUs We must align the struct smbc_dirent in the struct SMBC_internal_data because the struct smbc_dirent has numeric values that require alignment. Signed-off-by: Derrell Lipman <derrell.lipman@unwireduniverse.com>
* | Remove ndrdump - it's available in merged build mode as bin/ndrdump4 and ↵Jelmer Vernooij2008-12-162-503/+1
| | | | | | | | uses the exact same object files there.
* | Share object files for gen_ndr.Jelmer Vernooij2008-12-163-10/+335
| |
* | Add new script for building IDL files in librpc/idl, generating bothJelmer Vernooij2008-12-162-2/+153
|/ | | | Samba 3 and Samba 4 output.
* Fix path to ndr_notify.c.Jelmer Vernooij2008-12-161-1/+1
|