summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Merge branch 'master' of ssh://git.samba.org/data/git/sambaJelmer Vernooij2008-10-267-68/+194
|\
| * Add proxied named pipe supportVolker Lendecke2008-10-252-29/+146
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is a central piece of the "merged build" thing: Forward named pipes from samba3 to samba4. This patch is not finished yet, as we will have to forward the smb-level authentication information to samba4, but I'm pushing this patch already to demonstrate the implementation without clutter. It adds an intermediate parameter np:proxy = srvsvc samr winreg wkssvc ... and so on that states which of the pipes should be forwarded to the s4 unix domain socket DEFAULT. The parameter is intermediate because once we have a proper endpoint mapper implementation, this information will be retrieved out of a database. If anybody wants to try this, do the merged build and configure s4 with server services = samba3_smb, rpc, nbt, wrepl, ldap, cldap, kdc, drepl samba3:smbd = /data/inst/sbin/smbd and s3 with auth methods = guest netlogond np:proxy = srvsvc samr winreg wkssvc netlogon ntlsa ntsvcs lsass lsarpc netdfs \ rpcecho initshutdown epmapper svcctl eventlog drsuapi Then run rpcclient against samba4. It will fork s3, which authenticates against s4, and then forwards the rpc requests to s4. Volker
| * Move the is_known_pipename check into np_openVolker Lendecke2008-10-253-21/+16
| |
| * Add str_list_check[_ci] to s3's proto.hVolker Lendecke2008-10-251-0/+3
| | | | | | | | | | | | Jelmer, when I include lib/util/util.h into some s3 file I get errors, this is why I put those prototypes here as a workaround. Might be fixed differently later.
| * Fix "make etags" -- the args list gets really long for s4 with the prefixVolker Lendecke2008-10-251-1/+34
| |
| * Remove "pipe_handle_offset" -- pipes now use "struct files_struct"Volker Lendecke2008-10-253-22/+0
| |
* | Remove another use of global_loadparm.Jelmer Vernooij2008-10-242-9/+10
|/
* Fix includes.Jelmer Vernooij2008-10-242-0/+2
|
* Remove include/local.h and move defines to more appropriate places.Jelmer Vernooij2008-10-246-59/+35
|
* Fix installation of charset headers.Jelmer Vernooij2008-10-241-1/+1
|
* Fix the build.Jelmer Vernooij2008-10-242-2/+3
|
* Merge branch 'master' of ssh://git.samba.org/data/git/sambaJelmer Vernooij2008-10-241-3/+3
|\
| * Error return is False, not -1Derrell Lipman2008-10-241-3/+3
| | | | | | | | | | | | | | | | | | - There were a few places in SMBC_getatr() that returned -1 instead of a boolean. -1 was intended to mean error, but that's what False is for, and the usages of this function assume that it returns a boolean with False as the error condition. Derrell
* | Remove unused include param/param.h.Jelmer Vernooij2008-10-2479-87/+11
|/
* Remove more global_loadparm instances, fix syntax errors.Jelmer Vernooij2008-10-243-9/+9
|
* Revert Samba3 back to using its own charset handling code.Jelmer Vernooij2008-10-241-1/+1
|
* Add version of next_codepoint without iconv_convenience.Jelmer Vernooij2008-10-249-31/+37
|
* Remove use of global_loadparm in last Python script.Jelmer Vernooij2008-10-241-2/+0
|
* Regenerate SWIG files.Jelmer Vernooij2008-10-244-33/+6
|
* Remove access to global_loadparm from python module.Jelmer Vernooij2008-10-241-3/+0
|
* Mark global_loadparm as deprecated.Jelmer Vernooij2008-10-241-1/+1
|
* Remove more usages of global_loadparm.Jelmer Vernooij2008-10-247-27/+50
|
* Remove dependency of charset code on loadparm.Jelmer Vernooij2008-10-243-3/+7
|
* Remove more uses of global_loadparm.Jelmer Vernooij2008-10-243-11/+7
|
* Remove iconv_convenience argument from convert_string{,talloc}() butJelmer Vernooij2008-10-2424-73/+109
| | | | make them wrappers around convert_string{,talloc}_convenience().
* Remove a few more usages of global_loadparm.Jelmer Vernooij2008-10-244-7/+7
|
* Eliminate another instance of global_loadparm.Jelmer Vernooij2008-10-2431-46/+109
|
* Avoid retrieving iconv convenience during loops.Jelmer Vernooij2008-10-241-11/+15
|
* Remove const so return value can be freed.Jelmer Vernooij2008-10-242-10/+10
|
* Merge branch 'master' of ssh://git.samba.org/data/git/sambaJelmer Vernooij2008-10-2412-96/+281
|\
| * s3: fix simple "incompatible pointer type" build warningTim Prouty2008-10-231-1/+1
| |
| * Fix "ndr_size_PAC_LOGON_INFO defined but not used" build warningTim Prouty2008-10-233-7/+2
| | | | | | | | | | | | | | This patch removes the gensize option from krb5pac.idl because it generates an unused function that has been causing warnings during the s3 build. I re-ran 'make samba3-idl' to update the generated files for s3. For s4 I ran a full build with no problems.
| * netapi: make sure to always cleanup after testing NetUser calls.Günther Deschner2008-10-241-0/+4
| | | | | | | | Guenther
| * netapi: add more group tests to netapitest.Günther Deschner2008-10-241-3/+220
| | | | | | | | Guenther
| * s3-samr-server: return NT_STATUS_NOT_SUPPORTED for group rename.Günther Deschner2008-10-241-0/+3
| | | | | | | | Guenther
| * s3-samr-server: remove unused historic code.Günther Deschner2008-10-241-60/+0
| | | | | | | | Guenther
| * svcctl: move some non-rpc related bits out of rpc_svcctl.h.Günther Deschner2008-10-243-23/+49
| | | | | | | | Guenther
| * Merge branch 'master' of git://git.samba.org/sambaJelmer Vernooij2008-10-231-1/+1
| |\
| * | Fix prototype for set_sockaddr_port.Jelmer Vernooij2008-10-232-2/+2
| | |
* | | Fix merged build paths.Jelmer Vernooij2008-10-242-2/+2
| | |
* | | 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-2426-401/+392
| | | | | | | | | | | | functions.
* | | Fix include path to pytalloc.Jelmer Vernooij2008-10-241-1/+1
| | |
* | | Move pytalloc to talloc directory.Jelmer Vernooij2008-10-243-3/+3
| | |
* | | Split up codepoints code, use consistent _m suffix.Jelmer Vernooij2008-10-247-157/+189
| | |
* | | Rename string_replace_w to string_replace_m, which is more correct.Jelmer Vernooij2008-10-245-14/+10
| | |
* | | Remove unnecessary include, improve function name.Jelmer Vernooij2008-10-241-3/+2
| | |
* | | Move charset library to top level.Jelmer Vernooij2008-10-2416-9/+9
| |/ |/|
* | Fix function parameters.Jelmer Vernooij2008-10-231-1/+1
|/
* Merge branch 'master' of ssh://git.samba.org/data/git/sambaJelmer Vernooij2008-10-236-21/+10
|\