1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-03 13:47:25 +03:00

r23384: Fill in NETLOGON netr_DsRGetForestTrustInformation().

Guenther
(This used to be commit 82477b311e2a7a51906d0c00d8714f545b12b0bd)
This commit is contained in:
Günther Deschner 2007-06-08 10:49:46 +00:00 committed by Gerald (Jerry) Carter
parent 09a82db7ba
commit e4710c9dcf
2 changed files with 12 additions and 4 deletions

View File

@ -1227,7 +1227,15 @@ interface netlogon
/****************/
/* Function 0x2b */
WERROR netr_DSRGETFORESTTRUSTINFORMATION();
const int DS_GFTI_UPDATE_TDO = 0x1;
WERROR netr_DsRGetForestTrustInformation(
[in] [string,charset(UTF16)] uint16 *server_name,
[in] [string,charset(UTF16)] uint16 *trusted_domain_name,
[in] uint32 flags,
[out,ref] lsa_ForestTrustInformation **forest_trust_info
);
/****************/
/* Function 0x2c */

View File

@ -1214,10 +1214,10 @@ static WERROR dcesrv_netr_NETRSERVERTRUSTPASSWORDSGET(struct dcesrv_call_state *
/*
netr_DSRGETFORESTTRUSTINFORMATION
netr_DsRGetForestTrustInformation
*/
static WERROR dcesrv_netr_DSRGETFORESTTRUSTINFORMATION(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
struct netr_DSRGETFORESTTRUSTINFORMATION *r)
static WERROR dcesrv_netr_DsRGetForestTrustInformation(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
struct netr_DsRGetForestTrustInformation *r)
{
DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
}