summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2008-04-09Remove reference to pointless socket optionsVolker Lendecke1-4/+0
(This used to be commit 3aefb0df1c4065223d50c32910ef26704791a6a3)
2008-04-08Check x_fflush returns.Jeremy Allison1-4/+8
Jeremy. (This used to be commit 5525dc5f09a79d30f6c52fc3a88c8bce3060e642)
2008-04-08Fix lsa_QueryTrustedDomainInfo caller.Günther Deschner1-2/+2
Guenther (This used to be commit 9f148daaf2e240002914183655c2b2cc9067759f)
2008-04-08Re-run make idl.Günther Deschner5-19/+32
Guenther (This used to be commit ad3073749089f7166d9070c232ef02e6ba203215)
2008-04-08Fix IDL for lsa_LookupPrivName.Günther Deschner1-2/+2
Guenther (This used to be commit 7b56a4bcf23f124fc9530fe1401add094f25fb28)
2008-04-08Re-run make idl.Günther Deschner5-22/+35
Guenther (This used to be commit 6f474326030b916ca972b68ce36e4d7287192a33)
2008-04-08Fix IDL for lsa_QueryTrustedDomainInfo.Günther Deschner1-2/+2
Guenther (This used to be commit a064d000969233cf517f2e47b890d4e983c957ad)
2008-04-08Fix lsa_TrustedDomainInfo callers.Günther Deschner2-11/+7
Guenther (This used to be commit e0eae3901750c7b76560bbab9a86f24a64d42c8b)
2008-04-08Re-run make idl.Günther Deschner5-54/+101
Guenther (This used to be commit 83dc2e1477333480511b8948d4e3e8e90ff86e25)
2008-04-08Fix IDL for lsa_QueryTrustedDomainInfoBySid.Günther Deschner1-3/+3
Guenther (This used to be commit 7903103c70119d28b9d73cc340a1d85d04313b83)
2008-04-08Fix IDL for lsa_QueryTrustedDomainInfoByName.Günther Deschner1-1/+1
Guenther (This used to be commit 18272d53859378b8832c098bcfafacf306e0eeca)
2008-04-08Fix IDL for lsa_QueryDomainInformationPolicy.Günther Deschner1-2/+2
Guenther (This used to be commit 7a822c3c71fde8e86bc99c28701517e0db076263)
2008-04-08Fix the build of reply_setattrE().Günther Deschner1-2/+2
How ever could this compile ? Guenther (This used to be commit 02f5f35e5ed3b061cfd020d0b13014c72fced5f4)
2008-04-08Move is_valid_policy_hnd() out of net.Günther Deschner2-7/+8
Guenther (This used to be commit aae4d91e726ef8dcad173cdd1d6f719d94462948)
2008-04-08Try to use kerberos in libnetapi.Günther Deschner3-9/+30
Guenther (This used to be commit 9cfce2229508c2145c3527074ac76520544e5d25)
2008-04-08Add DsGetDcName libnetapi example.Günther Deschner2-0/+95
Guenther (This used to be commit 0216e55fa87a14fc45c320268f0511eb6638460b)
2008-04-08Add DsGetDcName call to libnetapi library.Günther Deschner4-0/+178
Guenther (This used to be commit 27780e984152e38c8f80e1c67ddf13b73a2b220d)
2008-04-08Re-run make idl.Günther Deschner3-1/+145
Guenther (This used to be commit a47642011a5d4732afa939a9162c232922a29f61)
2008-04-08Add DsGetDCName call to libnetapi.idl.Günther Deschner1-0/+22
Guenther (This used to be commit e8cea4db013de63ec0eb9f8c9db530688483e5b6)
2008-04-08Fix includes in libnetapi examples common.cGünther Deschner1-1/+4
Guenther (This used to be commit 922ff9d01668c2c2ad10decfd09c0e7b3f0d7592)
2008-04-08selftest: run the BASE-DELAYWRITE test 4 times faster in make testStefan Metzmacher2-0/+2
metze (This used to be commit 83b6da7c52a6f5285a9765d22d13a53fe9dc80e5)
2008-04-08Use size_t for strlen return, not int. Karolin pleaseJeremy Allison1-1/+1
pull. Jeremy. (This used to be commit f4a1fdaac0dd6b1b241fac9879416c8ad4403eff)
2008-04-08Use popt in libetapi example code.Günther Deschner6-114/+187
Guenther (This used to be commit 6f239df3f5a57c9549f1637e53fd42d2ed604c3f)
2008-04-08Prefill in username in libnetapi ctx.Günther Deschner1-1/+9
Guenther (This used to be commit 394bdb89ef350db0ab6aca093054e1048a8ffe1f)
2008-04-08Add CLI_FULL_CONNECTION_FALLBACK_AFTER_KERBEROS define.Günther Deschner2-0/+6
This allows to switch on the cli->fallback_after_kerberos switch. Guenther (This used to be commit 15ba45e567d910c1b2336dcc0c475e12b082f30f)
2008-04-08Destroy DMAPI session when main smbd daemon exits.Alexander Bokovoy2-0/+33
DMAPI session is precious resource maintained at kernel level. We open one of them and use across multiple smbd daemons but once last of them exits, DMAPI session needs to be destroyed. There are some HSM implementations which fail to shutdown when opened DMAPI sessions left. Ensure we shutdown our session when it is really not needed anymore. This is what recommended by DMAPI specification anyway. (This used to be commit a0cefd44009d414fa00ec6e08c70d21b74acdbcb)
2008-04-08Allow broader range of HSM systems in vfs_tsmsmAlexander Bokovoy1-5/+31
Allow to specify value of DMAPI attribute returned during offline file checks, 'tsmsm: dmapi value'. Previously tsmsm module has supported only IBM TSM SM engine which reports file state by *existence* of a certain DMAPI attribute. Other HSM systems report a certain value as DMAPI request's result. Port from Tridge's v3-0-ctdb git tree. (This used to be commit 1faa97d5cc51277abbc6cb5c37d31c429bea04e4)
2008-04-07Rewrite the wrap checks to deal with gcc 4.x optimisations.Jeremy Allison3-101/+142
Karolin, please pull once Volker has reviewed. Thanks. Jeremy. (This used to be commit 09852899cadc48abe2f2651ecbceaf881198e648)
2008-04-08Restructure inner workings of libnetapi a bit.Günther Deschner8-680/+663
Guenther (This used to be commit a4e3bc2bade8bf74696e1c6ced74da563ff2df7b)
2008-04-08Add libnetapi generated files.Günther Deschner3-0/+570
Guenther (This used to be commit 78da087b3a04f25bd0ea3195debf5c46731bac74)
2008-04-08Build libnetapi.idl.Günther Deschner1-1/+2
Guenther (This used to be commit c098714ac4bac8a7e27be761979a96190b77de1f)
2008-04-08Add libnetapi.idl.Günther Deschner1-0/+71
Guenther (This used to be commit 5231a135068a64aedbe2643a9168f2a14c40b139)
2008-04-08WhatsnewGünther Deschner1-0/+2
(This used to be commit 5cb480a664938d93d6cd059c78da9bc78eb58dcb)
2008-04-07Remove unused variable.James Peach1-1/+0
(This used to be commit 3ed2c65bde0c2e5ad10cf777dae8a2d3e626a42c)
2008-04-07Fix Kerberos interop with Mac OS X 10.5 clients.Bill Ricker3-23/+45
Ignore optional req_flags. Use the Kerberos mechanism OID negotiated with the client rather than hardcoding OID_KERBEROS5_OLD. (This used to be commit 59a2bcf30fef14ecc826271862b645dd3a61cb48)
2008-04-07Use bool for BOOL and true/false for True/False. We need lowercaseJames Peach1-63/+76
bool to get the declarations picked up by the prototype parser. (This used to be commit fd168e7b5065ba15b1cf56522b6810b8e6fdd7d5)
2008-04-07dbwrap: fix more "tdb_chainunlock failed" messagesMichael Adam1-1/+3
TALLOC_FREE(rec) before transaction_cancel also in dbwrap_trans_delete(). Michael (This used to be commit 04cd914a1f12691d27ddc67887a757cd813848a7)
2008-04-07winbindd: fix break out early condition in fill_grent_mem().Michael Adam1-1/+1
if (!&new_glist) would always be skipped, if (new_glist == NULL) is what must have been meant... Michael (This used to be commit c1b60cdecff2a53f0a75a432a1ad7730eb734908)
2008-04-07Only cache password policy results that worked, otherwise weBo Yang1-1/+3
cannot login until the cache expires even if a connection to a DC has been restored. (This used to be commit 8671f9767d7d93a86712741303d6046937c3aae8)
2008-04-07smbd: make it possible to change the write time delay for testingStefan Metzmacher2-1/+10
metze (This used to be commit df8c100c2b53575a0d425a2daf52e2d59904746a)
2008-04-07smbd: make it possible to disable get_file_infos() on searchesStefan Metzmacher3-14/+36
metze (This used to be commit 404a865a34c3a7c67131b3f99e92c11b2abe3e39)
2008-04-07locking: combine get_delete_on_close_flag() and get_write_time() into ↵Stefan Metzmacher4-33/+41
get_file_infos() This means we need to fetch the record only once. metze (This used to be commit 4130b873291d39e363184fe4e38dc1f24ebe5056)
2008-04-07selftest: samba3 passes BASE-DELAYWRITEStefan Metzmacher1-1/+1
metze (This used to be commit 5df34634317633820993c9ef924d694a8fe1c4fe)
2008-04-07smbd: implement the strange write time update logicStefan Metzmacher9-133/+242
We now never call file_ntimes() directly, every update is done via smb_set_file_time(). This let samba3 pass the BASE-DELAYWRITE test. The write time is only updated 2 seconds after the first write() on any open handle to the current time (not the time of the first write). Each handle which had write requests updates the write time to the current time on close(). If the write time is set explicit via setfileinfo or setpathinfo the write time is visible directly and a following close on the same handle doesn't update the write time. metze (This used to be commit 2eab212ea2e1bfd8fa716c2c89b2c042f7ba12ea)
2008-04-07locking: store the write time in the locking.tdbStefan Metzmacher7-26/+110
This is needed to implement the strange write time update logic later. We need to store 2 time timestamps to distinguish between the time the file system had before the first client opened the file and a forced timestamp update. metze (This used to be commit 6aaa2ce0eeb46f6735ec984a2e7aadde7a7f456d)
2008-04-07Fix an uninitialized variableVolker Lendecke1-1/+1
(This used to be commit 8b2d9ee8c54ed84f83fdecf04e656dd66b622abb)
2008-04-07increase log level for this failed setsockopt call. EINVAL is a normal error ↵Björn Jacke1-1/+4
on Solaris when we do this on an already resetted connection. (This used to be commit 42bc4ff7fd6bfc92bde015ae8f3a9fb62d443cd5)
2008-04-07Fix bug 5375Volker Lendecke1-3/+4
Thanks to Moskvin for testing (This used to be commit d3c31aa36c451f0a19496cd33c0b055b466e6b09)
2008-04-07Fix a misleading debug messageVolker Lendecke1-2/+3
(This used to be commit 494b32197f0872b115f0cd1a35421d00a89360a6)
2008-04-06net_rpc: let get_user_sids() use wbcLookupName(), wbcGidToSid() and ↵Stefan Metzmacher1-51/+47
wbcGetGroups() metze (This used to be commit 31375c02631cb3f37a8bbd4ea17d3ef69c4d07bf)