mirror of
https://github.com/samba-team/samba.git
synced 2025-01-26 10:04:02 +03:00
Pedantic cosmetics: rerun make idl.
Guenther (This used to be commit d1fa8049b1c0a3cebbc2c64e245e8055c8d3e84b)
This commit is contained in:
parent
bfab6ab14b
commit
791fe3119e
File diff suppressed because it is too large
Load Diff
@ -10,29 +10,29 @@ NTSTATUS rpccli_echo_AddOne(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx, ui
|
||||
{
|
||||
struct echo_AddOne r;
|
||||
NTSTATUS status;
|
||||
|
||||
|
||||
/* In parameters */
|
||||
r.in.in_data = in_data;
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_IN_DEBUG(echo_AddOne, &r);
|
||||
|
||||
|
||||
status = cli_do_rpc_ndr(cli, mem_ctx, PI_RPCECHO, &ndr_table_rpcecho, NDR_ECHO_ADDONE, &r);
|
||||
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_OUT_DEBUG(echo_AddOne, &r);
|
||||
|
||||
|
||||
if (NT_STATUS_IS_ERR(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
/* Return variables */
|
||||
*out_data = *r.out.out_data;
|
||||
|
||||
|
||||
/* Return result */
|
||||
return NT_STATUS_OK;
|
||||
}
|
||||
@ -41,30 +41,30 @@ NTSTATUS rpccli_echo_EchoData(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
|
||||
{
|
||||
struct echo_EchoData r;
|
||||
NTSTATUS status;
|
||||
|
||||
|
||||
/* In parameters */
|
||||
r.in.len = len;
|
||||
r.in.in_data = in_data;
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_IN_DEBUG(echo_EchoData, &r);
|
||||
|
||||
|
||||
status = cli_do_rpc_ndr(cli, mem_ctx, PI_RPCECHO, &ndr_table_rpcecho, NDR_ECHO_ECHODATA, &r);
|
||||
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_OUT_DEBUG(echo_EchoData, &r);
|
||||
|
||||
|
||||
if (NT_STATUS_IS_ERR(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
/* Return variables */
|
||||
memcpy(out_data, r.out.out_data, r.in.len);
|
||||
|
||||
|
||||
/* Return result */
|
||||
return NT_STATUS_OK;
|
||||
}
|
||||
@ -73,29 +73,29 @@ NTSTATUS rpccli_echo_SinkData(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
|
||||
{
|
||||
struct echo_SinkData r;
|
||||
NTSTATUS status;
|
||||
|
||||
|
||||
/* In parameters */
|
||||
r.in.len = len;
|
||||
r.in.data = data;
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_IN_DEBUG(echo_SinkData, &r);
|
||||
|
||||
|
||||
status = cli_do_rpc_ndr(cli, mem_ctx, PI_RPCECHO, &ndr_table_rpcecho, NDR_ECHO_SINKDATA, &r);
|
||||
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_OUT_DEBUG(echo_SinkData, &r);
|
||||
|
||||
|
||||
if (NT_STATUS_IS_ERR(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
/* Return variables */
|
||||
|
||||
|
||||
/* Return result */
|
||||
return NT_STATUS_OK;
|
||||
}
|
||||
@ -104,29 +104,29 @@ NTSTATUS rpccli_echo_SourceData(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx
|
||||
{
|
||||
struct echo_SourceData r;
|
||||
NTSTATUS status;
|
||||
|
||||
|
||||
/* In parameters */
|
||||
r.in.len = len;
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_IN_DEBUG(echo_SourceData, &r);
|
||||
|
||||
|
||||
status = cli_do_rpc_ndr(cli, mem_ctx, PI_RPCECHO, &ndr_table_rpcecho, NDR_ECHO_SOURCEDATA, &r);
|
||||
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_OUT_DEBUG(echo_SourceData, &r);
|
||||
|
||||
|
||||
if (NT_STATUS_IS_ERR(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
/* Return variables */
|
||||
memcpy(data, r.out.data, r.in.len);
|
||||
|
||||
|
||||
/* Return result */
|
||||
return NT_STATUS_OK;
|
||||
}
|
||||
@ -135,29 +135,29 @@ NTSTATUS rpccli_echo_TestCall(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
|
||||
{
|
||||
struct echo_TestCall r;
|
||||
NTSTATUS status;
|
||||
|
||||
|
||||
/* In parameters */
|
||||
r.in.s1 = s1;
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_IN_DEBUG(echo_TestCall, &r);
|
||||
|
||||
|
||||
status = cli_do_rpc_ndr(cli, mem_ctx, PI_RPCECHO, &ndr_table_rpcecho, NDR_ECHO_TESTCALL, &r);
|
||||
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_OUT_DEBUG(echo_TestCall, &r);
|
||||
|
||||
|
||||
if (NT_STATUS_IS_ERR(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
/* Return variables */
|
||||
*s2 = *r.out.s2;
|
||||
|
||||
|
||||
/* Return result */
|
||||
return NT_STATUS_OK;
|
||||
}
|
||||
@ -166,29 +166,29 @@ NTSTATUS rpccli_echo_TestCall2(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
|
||||
{
|
||||
struct echo_TestCall2 r;
|
||||
NTSTATUS status;
|
||||
|
||||
|
||||
/* In parameters */
|
||||
r.in.level = level;
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_IN_DEBUG(echo_TestCall2, &r);
|
||||
|
||||
|
||||
status = cli_do_rpc_ndr(cli, mem_ctx, PI_RPCECHO, &ndr_table_rpcecho, NDR_ECHO_TESTCALL2, &r);
|
||||
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_OUT_DEBUG(echo_TestCall2, &r);
|
||||
|
||||
|
||||
if (NT_STATUS_IS_ERR(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
/* Return variables */
|
||||
*info = *r.out.info;
|
||||
|
||||
|
||||
/* Return result */
|
||||
return r.out.result;
|
||||
}
|
||||
@ -197,28 +197,28 @@ NTSTATUS rpccli_echo_TestSleep(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
|
||||
{
|
||||
struct echo_TestSleep r;
|
||||
NTSTATUS status;
|
||||
|
||||
|
||||
/* In parameters */
|
||||
r.in.seconds = seconds;
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_IN_DEBUG(echo_TestSleep, &r);
|
||||
|
||||
|
||||
status = cli_do_rpc_ndr(cli, mem_ctx, PI_RPCECHO, &ndr_table_rpcecho, NDR_ECHO_TESTSLEEP, &r);
|
||||
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_OUT_DEBUG(echo_TestSleep, &r);
|
||||
|
||||
|
||||
if (NT_STATUS_IS_ERR(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
/* Return variables */
|
||||
|
||||
|
||||
/* Return result */
|
||||
return NT_STATUS_OK;
|
||||
}
|
||||
@ -227,33 +227,33 @@ NTSTATUS rpccli_echo_TestEnum(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
|
||||
{
|
||||
struct echo_TestEnum r;
|
||||
NTSTATUS status;
|
||||
|
||||
|
||||
/* In parameters */
|
||||
r.in.foo1 = foo1;
|
||||
r.in.foo2 = foo2;
|
||||
r.in.foo3 = foo3;
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_IN_DEBUG(echo_TestEnum, &r);
|
||||
|
||||
|
||||
status = cli_do_rpc_ndr(cli, mem_ctx, PI_RPCECHO, &ndr_table_rpcecho, NDR_ECHO_TESTENUM, &r);
|
||||
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_OUT_DEBUG(echo_TestEnum, &r);
|
||||
|
||||
|
||||
if (NT_STATUS_IS_ERR(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
/* Return variables */
|
||||
*foo1 = *r.out.foo1;
|
||||
*foo2 = *r.out.foo2;
|
||||
*foo3 = *r.out.foo3;
|
||||
|
||||
|
||||
/* Return result */
|
||||
return NT_STATUS_OK;
|
||||
}
|
||||
@ -262,29 +262,29 @@ NTSTATUS rpccli_echo_TestSurrounding(struct rpc_pipe_client *cli, TALLOC_CTX *me
|
||||
{
|
||||
struct echo_TestSurrounding r;
|
||||
NTSTATUS status;
|
||||
|
||||
|
||||
/* In parameters */
|
||||
r.in.data = data;
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_IN_DEBUG(echo_TestSurrounding, &r);
|
||||
|
||||
|
||||
status = cli_do_rpc_ndr(cli, mem_ctx, PI_RPCECHO, &ndr_table_rpcecho, NDR_ECHO_TESTSURROUNDING, &r);
|
||||
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_OUT_DEBUG(echo_TestSurrounding, &r);
|
||||
|
||||
|
||||
if (NT_STATUS_IS_ERR(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
/* Return variables */
|
||||
*data = *r.out.data;
|
||||
|
||||
|
||||
/* Return result */
|
||||
return NT_STATUS_OK;
|
||||
}
|
||||
@ -293,28 +293,28 @@ NTSTATUS rpccli_echo_TestDoublePointer(struct rpc_pipe_client *cli, TALLOC_CTX *
|
||||
{
|
||||
struct echo_TestDoublePointer r;
|
||||
NTSTATUS status;
|
||||
|
||||
|
||||
/* In parameters */
|
||||
r.in.data = data;
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_IN_DEBUG(echo_TestDoublePointer, &r);
|
||||
|
||||
|
||||
status = cli_do_rpc_ndr(cli, mem_ctx, PI_RPCECHO, &ndr_table_rpcecho, NDR_ECHO_TESTDOUBLEPOINTER, &r);
|
||||
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_OUT_DEBUG(echo_TestDoublePointer, &r);
|
||||
|
||||
|
||||
if (NT_STATUS_IS_ERR(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
/* Return variables */
|
||||
|
||||
|
||||
/* Return result */
|
||||
return NT_STATUS_OK;
|
||||
}
|
||||
|
@ -10,30 +10,30 @@ NTSTATUS rpccli_epm_Insert(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx, uin
|
||||
{
|
||||
struct epm_Insert r;
|
||||
NTSTATUS status;
|
||||
|
||||
|
||||
/* In parameters */
|
||||
r.in.num_ents = num_ents;
|
||||
r.in.entries = entries;
|
||||
r.in.replace = replace;
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_IN_DEBUG(epm_Insert, &r);
|
||||
|
||||
|
||||
status = cli_do_rpc_ndr(cli, mem_ctx, PI_EPMAPPER, &ndr_table_epmapper, NDR_EPM_INSERT, &r);
|
||||
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_OUT_DEBUG(epm_Insert, &r);
|
||||
|
||||
|
||||
if (NT_STATUS_IS_ERR(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
/* Return variables */
|
||||
|
||||
|
||||
/* Return result */
|
||||
return NT_STATUS_OK;
|
||||
}
|
||||
@ -42,29 +42,29 @@ NTSTATUS rpccli_epm_Delete(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx, uin
|
||||
{
|
||||
struct epm_Delete r;
|
||||
NTSTATUS status;
|
||||
|
||||
|
||||
/* In parameters */
|
||||
r.in.num_ents = num_ents;
|
||||
r.in.entries = entries;
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_IN_DEBUG(epm_Delete, &r);
|
||||
|
||||
|
||||
status = cli_do_rpc_ndr(cli, mem_ctx, PI_EPMAPPER, &ndr_table_epmapper, NDR_EPM_DELETE, &r);
|
||||
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_OUT_DEBUG(epm_Delete, &r);
|
||||
|
||||
|
||||
if (NT_STATUS_IS_ERR(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
/* Return variables */
|
||||
|
||||
|
||||
/* Return result */
|
||||
return NT_STATUS_OK;
|
||||
}
|
||||
@ -73,7 +73,7 @@ NTSTATUS rpccli_epm_Lookup(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx, uin
|
||||
{
|
||||
struct epm_Lookup r;
|
||||
NTSTATUS status;
|
||||
|
||||
|
||||
/* In parameters */
|
||||
r.in.inquiry_type = inquiry_type;
|
||||
r.in.object = object;
|
||||
@ -81,28 +81,28 @@ NTSTATUS rpccli_epm_Lookup(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx, uin
|
||||
r.in.vers_option = vers_option;
|
||||
r.in.entry_handle = entry_handle;
|
||||
r.in.max_ents = max_ents;
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_IN_DEBUG(epm_Lookup, &r);
|
||||
|
||||
|
||||
status = cli_do_rpc_ndr(cli, mem_ctx, PI_EPMAPPER, &ndr_table_epmapper, NDR_EPM_LOOKUP, &r);
|
||||
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_OUT_DEBUG(epm_Lookup, &r);
|
||||
|
||||
|
||||
if (NT_STATUS_IS_ERR(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
/* Return variables */
|
||||
*entry_handle = *r.out.entry_handle;
|
||||
*num_ents = *r.out.num_ents;
|
||||
memcpy(entries, r.out.entries, r.in.max_ents);
|
||||
|
||||
|
||||
/* Return result */
|
||||
return NT_STATUS_OK;
|
||||
}
|
||||
@ -111,34 +111,34 @@ NTSTATUS rpccli_epm_Map(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx, struct
|
||||
{
|
||||
struct epm_Map r;
|
||||
NTSTATUS status;
|
||||
|
||||
|
||||
/* In parameters */
|
||||
r.in.object = object;
|
||||
r.in.map_tower = map_tower;
|
||||
r.in.entry_handle = entry_handle;
|
||||
r.in.max_towers = max_towers;
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_IN_DEBUG(epm_Map, &r);
|
||||
|
||||
|
||||
status = cli_do_rpc_ndr(cli, mem_ctx, PI_EPMAPPER, &ndr_table_epmapper, NDR_EPM_MAP, &r);
|
||||
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_OUT_DEBUG(epm_Map, &r);
|
||||
|
||||
|
||||
if (NT_STATUS_IS_ERR(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
/* Return variables */
|
||||
*entry_handle = *r.out.entry_handle;
|
||||
*num_towers = *r.out.num_towers;
|
||||
memcpy(towers, r.out.towers, r.in.max_towers);
|
||||
|
||||
|
||||
/* Return result */
|
||||
return NT_STATUS_OK;
|
||||
}
|
||||
@ -147,29 +147,29 @@ NTSTATUS rpccli_epm_LookupHandleFree(struct rpc_pipe_client *cli, TALLOC_CTX *me
|
||||
{
|
||||
struct epm_LookupHandleFree r;
|
||||
NTSTATUS status;
|
||||
|
||||
|
||||
/* In parameters */
|
||||
r.in.entry_handle = entry_handle;
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_IN_DEBUG(epm_LookupHandleFree, &r);
|
||||
|
||||
|
||||
status = cli_do_rpc_ndr(cli, mem_ctx, PI_EPMAPPER, &ndr_table_epmapper, NDR_EPM_LOOKUPHANDLEFREE, &r);
|
||||
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_OUT_DEBUG(epm_LookupHandleFree, &r);
|
||||
|
||||
|
||||
if (NT_STATUS_IS_ERR(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
/* Return variables */
|
||||
*entry_handle = *r.out.entry_handle;
|
||||
|
||||
|
||||
/* Return result */
|
||||
return NT_STATUS_OK;
|
||||
}
|
||||
@ -178,28 +178,28 @@ NTSTATUS rpccli_epm_InqObject(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
|
||||
{
|
||||
struct epm_InqObject r;
|
||||
NTSTATUS status;
|
||||
|
||||
|
||||
/* In parameters */
|
||||
r.in.epm_object = epm_object;
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_IN_DEBUG(epm_InqObject, &r);
|
||||
|
||||
|
||||
status = cli_do_rpc_ndr(cli, mem_ctx, PI_EPMAPPER, &ndr_table_epmapper, NDR_EPM_INQOBJECT, &r);
|
||||
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_OUT_DEBUG(epm_InqObject, &r);
|
||||
|
||||
|
||||
if (NT_STATUS_IS_ERR(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
/* Return variables */
|
||||
|
||||
|
||||
/* Return result */
|
||||
return NT_STATUS_OK;
|
||||
}
|
||||
@ -208,30 +208,30 @@ NTSTATUS rpccli_epm_MgmtDelete(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
|
||||
{
|
||||
struct epm_MgmtDelete r;
|
||||
NTSTATUS status;
|
||||
|
||||
|
||||
/* In parameters */
|
||||
r.in.object_speced = object_speced;
|
||||
r.in.object = object;
|
||||
r.in.tower = tower;
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_IN_DEBUG(epm_MgmtDelete, &r);
|
||||
|
||||
|
||||
status = cli_do_rpc_ndr(cli, mem_ctx, PI_EPMAPPER, &ndr_table_epmapper, NDR_EPM_MGMTDELETE, &r);
|
||||
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_OUT_DEBUG(epm_MgmtDelete, &r);
|
||||
|
||||
|
||||
if (NT_STATUS_IS_ERR(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
/* Return variables */
|
||||
|
||||
|
||||
/* Return result */
|
||||
return NT_STATUS_OK;
|
||||
}
|
||||
@ -240,27 +240,27 @@ NTSTATUS rpccli_epm_MapAuth(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx)
|
||||
{
|
||||
struct epm_MapAuth r;
|
||||
NTSTATUS status;
|
||||
|
||||
|
||||
/* In parameters */
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_IN_DEBUG(epm_MapAuth, &r);
|
||||
|
||||
|
||||
status = cli_do_rpc_ndr(cli, mem_ctx, PI_EPMAPPER, &ndr_table_epmapper, NDR_EPM_MAPAUTH, &r);
|
||||
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_OUT_DEBUG(epm_MapAuth, &r);
|
||||
|
||||
|
||||
if (NT_STATUS_IS_ERR(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
/* Return variables */
|
||||
|
||||
|
||||
/* Return result */
|
||||
return NT_STATUS_OK;
|
||||
}
|
||||
|
@ -10,29 +10,29 @@ NTSTATUS rpccli_eventlog_ClearEventLogW(struct rpc_pipe_client *cli, TALLOC_CTX
|
||||
{
|
||||
struct eventlog_ClearEventLogW r;
|
||||
NTSTATUS status;
|
||||
|
||||
|
||||
/* In parameters */
|
||||
r.in.handle = handle;
|
||||
r.in.unknown = unknown;
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_IN_DEBUG(eventlog_ClearEventLogW, &r);
|
||||
|
||||
|
||||
status = cli_do_rpc_ndr(cli, mem_ctx, PI_EVENTLOG, &ndr_table_eventlog, NDR_EVENTLOG_CLEAREVENTLOGW, &r);
|
||||
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_OUT_DEBUG(eventlog_ClearEventLogW, &r);
|
||||
|
||||
|
||||
if (NT_STATUS_IS_ERR(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
/* Return variables */
|
||||
|
||||
|
||||
/* Return result */
|
||||
return r.out.result;
|
||||
}
|
||||
@ -41,27 +41,27 @@ NTSTATUS rpccli_eventlog_BackupEventLogW(struct rpc_pipe_client *cli, TALLOC_CTX
|
||||
{
|
||||
struct eventlog_BackupEventLogW r;
|
||||
NTSTATUS status;
|
||||
|
||||
|
||||
/* In parameters */
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_IN_DEBUG(eventlog_BackupEventLogW, &r);
|
||||
|
||||
|
||||
status = cli_do_rpc_ndr(cli, mem_ctx, PI_EVENTLOG, &ndr_table_eventlog, NDR_EVENTLOG_BACKUPEVENTLOGW, &r);
|
||||
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_OUT_DEBUG(eventlog_BackupEventLogW, &r);
|
||||
|
||||
|
||||
if (NT_STATUS_IS_ERR(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
/* Return variables */
|
||||
|
||||
|
||||
/* Return result */
|
||||
return r.out.result;
|
||||
}
|
||||
@ -70,29 +70,29 @@ NTSTATUS rpccli_eventlog_CloseEventLog(struct rpc_pipe_client *cli, TALLOC_CTX *
|
||||
{
|
||||
struct eventlog_CloseEventLog r;
|
||||
NTSTATUS status;
|
||||
|
||||
|
||||
/* In parameters */
|
||||
r.in.handle = handle;
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_IN_DEBUG(eventlog_CloseEventLog, &r);
|
||||
|
||||
|
||||
status = cli_do_rpc_ndr(cli, mem_ctx, PI_EVENTLOG, &ndr_table_eventlog, NDR_EVENTLOG_CLOSEEVENTLOG, &r);
|
||||
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_OUT_DEBUG(eventlog_CloseEventLog, &r);
|
||||
|
||||
|
||||
if (NT_STATUS_IS_ERR(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
/* Return variables */
|
||||
*handle = *r.out.handle;
|
||||
|
||||
|
||||
/* Return result */
|
||||
return r.out.result;
|
||||
}
|
||||
@ -101,27 +101,27 @@ NTSTATUS rpccli_eventlog_DeregisterEventSource(struct rpc_pipe_client *cli, TALL
|
||||
{
|
||||
struct eventlog_DeregisterEventSource r;
|
||||
NTSTATUS status;
|
||||
|
||||
|
||||
/* In parameters */
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_IN_DEBUG(eventlog_DeregisterEventSource, &r);
|
||||
|
||||
|
||||
status = cli_do_rpc_ndr(cli, mem_ctx, PI_EVENTLOG, &ndr_table_eventlog, NDR_EVENTLOG_DEREGISTEREVENTSOURCE, &r);
|
||||
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_OUT_DEBUG(eventlog_DeregisterEventSource, &r);
|
||||
|
||||
|
||||
if (NT_STATUS_IS_ERR(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
/* Return variables */
|
||||
|
||||
|
||||
/* Return result */
|
||||
return r.out.result;
|
||||
}
|
||||
@ -130,29 +130,29 @@ NTSTATUS rpccli_eventlog_GetNumRecords(struct rpc_pipe_client *cli, TALLOC_CTX *
|
||||
{
|
||||
struct eventlog_GetNumRecords r;
|
||||
NTSTATUS status;
|
||||
|
||||
|
||||
/* In parameters */
|
||||
r.in.handle = handle;
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_IN_DEBUG(eventlog_GetNumRecords, &r);
|
||||
|
||||
|
||||
status = cli_do_rpc_ndr(cli, mem_ctx, PI_EVENTLOG, &ndr_table_eventlog, NDR_EVENTLOG_GETNUMRECORDS, &r);
|
||||
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_OUT_DEBUG(eventlog_GetNumRecords, &r);
|
||||
|
||||
|
||||
if (NT_STATUS_IS_ERR(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
/* Return variables */
|
||||
*number = *r.out.number;
|
||||
|
||||
|
||||
/* Return result */
|
||||
return r.out.result;
|
||||
}
|
||||
@ -161,27 +161,27 @@ NTSTATUS rpccli_eventlog_GetOldestRecord(struct rpc_pipe_client *cli, TALLOC_CTX
|
||||
{
|
||||
struct eventlog_GetOldestRecord r;
|
||||
NTSTATUS status;
|
||||
|
||||
|
||||
/* In parameters */
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_IN_DEBUG(eventlog_GetOldestRecord, &r);
|
||||
|
||||
|
||||
status = cli_do_rpc_ndr(cli, mem_ctx, PI_EVENTLOG, &ndr_table_eventlog, NDR_EVENTLOG_GETOLDESTRECORD, &r);
|
||||
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_OUT_DEBUG(eventlog_GetOldestRecord, &r);
|
||||
|
||||
|
||||
if (NT_STATUS_IS_ERR(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
/* Return variables */
|
||||
|
||||
|
||||
/* Return result */
|
||||
return r.out.result;
|
||||
}
|
||||
@ -190,27 +190,27 @@ NTSTATUS rpccli_eventlog_ChangeNotify(struct rpc_pipe_client *cli, TALLOC_CTX *m
|
||||
{
|
||||
struct eventlog_ChangeNotify r;
|
||||
NTSTATUS status;
|
||||
|
||||
|
||||
/* In parameters */
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_IN_DEBUG(eventlog_ChangeNotify, &r);
|
||||
|
||||
|
||||
status = cli_do_rpc_ndr(cli, mem_ctx, PI_EVENTLOG, &ndr_table_eventlog, NDR_EVENTLOG_CHANGENOTIFY, &r);
|
||||
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_OUT_DEBUG(eventlog_ChangeNotify, &r);
|
||||
|
||||
|
||||
if (NT_STATUS_IS_ERR(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
/* Return variables */
|
||||
|
||||
|
||||
/* Return result */
|
||||
return r.out.result;
|
||||
}
|
||||
@ -219,33 +219,33 @@ NTSTATUS rpccli_eventlog_OpenEventLogW(struct rpc_pipe_client *cli, TALLOC_CTX *
|
||||
{
|
||||
struct eventlog_OpenEventLogW r;
|
||||
NTSTATUS status;
|
||||
|
||||
|
||||
/* In parameters */
|
||||
r.in.unknown0 = unknown0;
|
||||
r.in.logname = logname;
|
||||
r.in.servername = servername;
|
||||
r.in.unknown2 = unknown2;
|
||||
r.in.unknown3 = unknown3;
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_IN_DEBUG(eventlog_OpenEventLogW, &r);
|
||||
|
||||
|
||||
status = cli_do_rpc_ndr(cli, mem_ctx, PI_EVENTLOG, &ndr_table_eventlog, NDR_EVENTLOG_OPENEVENTLOGW, &r);
|
||||
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_OUT_DEBUG(eventlog_OpenEventLogW, &r);
|
||||
|
||||
|
||||
if (NT_STATUS_IS_ERR(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
/* Return variables */
|
||||
*handle = *r.out.handle;
|
||||
|
||||
|
||||
/* Return result */
|
||||
return r.out.result;
|
||||
}
|
||||
@ -254,27 +254,27 @@ NTSTATUS rpccli_eventlog_RegisterEventSourceW(struct rpc_pipe_client *cli, TALLO
|
||||
{
|
||||
struct eventlog_RegisterEventSourceW r;
|
||||
NTSTATUS status;
|
||||
|
||||
|
||||
/* In parameters */
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_IN_DEBUG(eventlog_RegisterEventSourceW, &r);
|
||||
|
||||
|
||||
status = cli_do_rpc_ndr(cli, mem_ctx, PI_EVENTLOG, &ndr_table_eventlog, NDR_EVENTLOG_REGISTEREVENTSOURCEW, &r);
|
||||
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_OUT_DEBUG(eventlog_RegisterEventSourceW, &r);
|
||||
|
||||
|
||||
if (NT_STATUS_IS_ERR(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
/* Return variables */
|
||||
|
||||
|
||||
/* Return result */
|
||||
return r.out.result;
|
||||
}
|
||||
@ -283,27 +283,27 @@ NTSTATUS rpccli_eventlog_OpenBackupEventLogW(struct rpc_pipe_client *cli, TALLOC
|
||||
{
|
||||
struct eventlog_OpenBackupEventLogW r;
|
||||
NTSTATUS status;
|
||||
|
||||
|
||||
/* In parameters */
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_IN_DEBUG(eventlog_OpenBackupEventLogW, &r);
|
||||
|
||||
|
||||
status = cli_do_rpc_ndr(cli, mem_ctx, PI_EVENTLOG, &ndr_table_eventlog, NDR_EVENTLOG_OPENBACKUPEVENTLOGW, &r);
|
||||
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_OUT_DEBUG(eventlog_OpenBackupEventLogW, &r);
|
||||
|
||||
|
||||
if (NT_STATUS_IS_ERR(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
/* Return variables */
|
||||
|
||||
|
||||
/* Return result */
|
||||
return r.out.result;
|
||||
}
|
||||
@ -312,34 +312,34 @@ NTSTATUS rpccli_eventlog_ReadEventLogW(struct rpc_pipe_client *cli, TALLOC_CTX *
|
||||
{
|
||||
struct eventlog_ReadEventLogW r;
|
||||
NTSTATUS status;
|
||||
|
||||
|
||||
/* In parameters */
|
||||
r.in.handle = handle;
|
||||
r.in.flags = flags;
|
||||
r.in.offset = offset;
|
||||
r.in.number_of_bytes = number_of_bytes;
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_IN_DEBUG(eventlog_ReadEventLogW, &r);
|
||||
|
||||
|
||||
status = cli_do_rpc_ndr(cli, mem_ctx, PI_EVENTLOG, &ndr_table_eventlog, NDR_EVENTLOG_READEVENTLOGW, &r);
|
||||
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_OUT_DEBUG(eventlog_ReadEventLogW, &r);
|
||||
|
||||
|
||||
if (NT_STATUS_IS_ERR(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
/* Return variables */
|
||||
memcpy(data, r.out.data, r.in.number_of_bytes);
|
||||
*sent_size = *r.out.sent_size;
|
||||
*real_size = *r.out.real_size;
|
||||
|
||||
|
||||
/* Return result */
|
||||
return r.out.result;
|
||||
}
|
||||
@ -348,27 +348,27 @@ NTSTATUS rpccli_eventlog_ReportEventW(struct rpc_pipe_client *cli, TALLOC_CTX *m
|
||||
{
|
||||
struct eventlog_ReportEventW r;
|
||||
NTSTATUS status;
|
||||
|
||||
|
||||
/* In parameters */
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_IN_DEBUG(eventlog_ReportEventW, &r);
|
||||
|
||||
|
||||
status = cli_do_rpc_ndr(cli, mem_ctx, PI_EVENTLOG, &ndr_table_eventlog, NDR_EVENTLOG_REPORTEVENTW, &r);
|
||||
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_OUT_DEBUG(eventlog_ReportEventW, &r);
|
||||
|
||||
|
||||
if (NT_STATUS_IS_ERR(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
/* Return variables */
|
||||
|
||||
|
||||
/* Return result */
|
||||
return r.out.result;
|
||||
}
|
||||
@ -377,27 +377,27 @@ NTSTATUS rpccli_eventlog_ClearEventLogA(struct rpc_pipe_client *cli, TALLOC_CTX
|
||||
{
|
||||
struct eventlog_ClearEventLogA r;
|
||||
NTSTATUS status;
|
||||
|
||||
|
||||
/* In parameters */
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_IN_DEBUG(eventlog_ClearEventLogA, &r);
|
||||
|
||||
|
||||
status = cli_do_rpc_ndr(cli, mem_ctx, PI_EVENTLOG, &ndr_table_eventlog, NDR_EVENTLOG_CLEAREVENTLOGA, &r);
|
||||
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_OUT_DEBUG(eventlog_ClearEventLogA, &r);
|
||||
|
||||
|
||||
if (NT_STATUS_IS_ERR(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
/* Return variables */
|
||||
|
||||
|
||||
/* Return result */
|
||||
return r.out.result;
|
||||
}
|
||||
@ -406,27 +406,27 @@ NTSTATUS rpccli_eventlog_BackupEventLogA(struct rpc_pipe_client *cli, TALLOC_CTX
|
||||
{
|
||||
struct eventlog_BackupEventLogA r;
|
||||
NTSTATUS status;
|
||||
|
||||
|
||||
/* In parameters */
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_IN_DEBUG(eventlog_BackupEventLogA, &r);
|
||||
|
||||
|
||||
status = cli_do_rpc_ndr(cli, mem_ctx, PI_EVENTLOG, &ndr_table_eventlog, NDR_EVENTLOG_BACKUPEVENTLOGA, &r);
|
||||
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_OUT_DEBUG(eventlog_BackupEventLogA, &r);
|
||||
|
||||
|
||||
if (NT_STATUS_IS_ERR(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
/* Return variables */
|
||||
|
||||
|
||||
/* Return result */
|
||||
return r.out.result;
|
||||
}
|
||||
@ -435,27 +435,27 @@ NTSTATUS rpccli_eventlog_OpenEventLogA(struct rpc_pipe_client *cli, TALLOC_CTX *
|
||||
{
|
||||
struct eventlog_OpenEventLogA r;
|
||||
NTSTATUS status;
|
||||
|
||||
|
||||
/* In parameters */
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_IN_DEBUG(eventlog_OpenEventLogA, &r);
|
||||
|
||||
|
||||
status = cli_do_rpc_ndr(cli, mem_ctx, PI_EVENTLOG, &ndr_table_eventlog, NDR_EVENTLOG_OPENEVENTLOGA, &r);
|
||||
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_OUT_DEBUG(eventlog_OpenEventLogA, &r);
|
||||
|
||||
|
||||
if (NT_STATUS_IS_ERR(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
/* Return variables */
|
||||
|
||||
|
||||
/* Return result */
|
||||
return r.out.result;
|
||||
}
|
||||
@ -464,27 +464,27 @@ NTSTATUS rpccli_eventlog_RegisterEventSourceA(struct rpc_pipe_client *cli, TALLO
|
||||
{
|
||||
struct eventlog_RegisterEventSourceA r;
|
||||
NTSTATUS status;
|
||||
|
||||
|
||||
/* In parameters */
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_IN_DEBUG(eventlog_RegisterEventSourceA, &r);
|
||||
|
||||
|
||||
status = cli_do_rpc_ndr(cli, mem_ctx, PI_EVENTLOG, &ndr_table_eventlog, NDR_EVENTLOG_REGISTEREVENTSOURCEA, &r);
|
||||
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_OUT_DEBUG(eventlog_RegisterEventSourceA, &r);
|
||||
|
||||
|
||||
if (NT_STATUS_IS_ERR(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
/* Return variables */
|
||||
|
||||
|
||||
/* Return result */
|
||||
return r.out.result;
|
||||
}
|
||||
@ -493,27 +493,27 @@ NTSTATUS rpccli_eventlog_OpenBackupEventLogA(struct rpc_pipe_client *cli, TALLOC
|
||||
{
|
||||
struct eventlog_OpenBackupEventLogA r;
|
||||
NTSTATUS status;
|
||||
|
||||
|
||||
/* In parameters */
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_IN_DEBUG(eventlog_OpenBackupEventLogA, &r);
|
||||
|
||||
|
||||
status = cli_do_rpc_ndr(cli, mem_ctx, PI_EVENTLOG, &ndr_table_eventlog, NDR_EVENTLOG_OPENBACKUPEVENTLOGA, &r);
|
||||
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_OUT_DEBUG(eventlog_OpenBackupEventLogA, &r);
|
||||
|
||||
|
||||
if (NT_STATUS_IS_ERR(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
/* Return variables */
|
||||
|
||||
|
||||
/* Return result */
|
||||
return r.out.result;
|
||||
}
|
||||
@ -522,27 +522,27 @@ NTSTATUS rpccli_eventlog_ReadEventLogA(struct rpc_pipe_client *cli, TALLOC_CTX *
|
||||
{
|
||||
struct eventlog_ReadEventLogA r;
|
||||
NTSTATUS status;
|
||||
|
||||
|
||||
/* In parameters */
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_IN_DEBUG(eventlog_ReadEventLogA, &r);
|
||||
|
||||
|
||||
status = cli_do_rpc_ndr(cli, mem_ctx, PI_EVENTLOG, &ndr_table_eventlog, NDR_EVENTLOG_READEVENTLOGA, &r);
|
||||
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_OUT_DEBUG(eventlog_ReadEventLogA, &r);
|
||||
|
||||
|
||||
if (NT_STATUS_IS_ERR(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
/* Return variables */
|
||||
|
||||
|
||||
/* Return result */
|
||||
return r.out.result;
|
||||
}
|
||||
@ -551,27 +551,27 @@ NTSTATUS rpccli_eventlog_ReportEventA(struct rpc_pipe_client *cli, TALLOC_CTX *m
|
||||
{
|
||||
struct eventlog_ReportEventA r;
|
||||
NTSTATUS status;
|
||||
|
||||
|
||||
/* In parameters */
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_IN_DEBUG(eventlog_ReportEventA, &r);
|
||||
|
||||
|
||||
status = cli_do_rpc_ndr(cli, mem_ctx, PI_EVENTLOG, &ndr_table_eventlog, NDR_EVENTLOG_REPORTEVENTA, &r);
|
||||
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_OUT_DEBUG(eventlog_ReportEventA, &r);
|
||||
|
||||
|
||||
if (NT_STATUS_IS_ERR(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
/* Return variables */
|
||||
|
||||
|
||||
/* Return result */
|
||||
return r.out.result;
|
||||
}
|
||||
@ -580,27 +580,27 @@ NTSTATUS rpccli_eventlog_RegisterClusterSvc(struct rpc_pipe_client *cli, TALLOC_
|
||||
{
|
||||
struct eventlog_RegisterClusterSvc r;
|
||||
NTSTATUS status;
|
||||
|
||||
|
||||
/* In parameters */
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_IN_DEBUG(eventlog_RegisterClusterSvc, &r);
|
||||
|
||||
|
||||
status = cli_do_rpc_ndr(cli, mem_ctx, PI_EVENTLOG, &ndr_table_eventlog, NDR_EVENTLOG_REGISTERCLUSTERSVC, &r);
|
||||
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_OUT_DEBUG(eventlog_RegisterClusterSvc, &r);
|
||||
|
||||
|
||||
if (NT_STATUS_IS_ERR(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
/* Return variables */
|
||||
|
||||
|
||||
/* Return result */
|
||||
return r.out.result;
|
||||
}
|
||||
@ -609,27 +609,27 @@ NTSTATUS rpccli_eventlog_DeregisterClusterSvc(struct rpc_pipe_client *cli, TALLO
|
||||
{
|
||||
struct eventlog_DeregisterClusterSvc r;
|
||||
NTSTATUS status;
|
||||
|
||||
|
||||
/* In parameters */
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_IN_DEBUG(eventlog_DeregisterClusterSvc, &r);
|
||||
|
||||
|
||||
status = cli_do_rpc_ndr(cli, mem_ctx, PI_EVENTLOG, &ndr_table_eventlog, NDR_EVENTLOG_DEREGISTERCLUSTERSVC, &r);
|
||||
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_OUT_DEBUG(eventlog_DeregisterClusterSvc, &r);
|
||||
|
||||
|
||||
if (NT_STATUS_IS_ERR(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
/* Return variables */
|
||||
|
||||
|
||||
/* Return result */
|
||||
return r.out.result;
|
||||
}
|
||||
@ -638,27 +638,27 @@ NTSTATUS rpccli_eventlog_WriteClusterEvents(struct rpc_pipe_client *cli, TALLOC_
|
||||
{
|
||||
struct eventlog_WriteClusterEvents r;
|
||||
NTSTATUS status;
|
||||
|
||||
|
||||
/* In parameters */
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_IN_DEBUG(eventlog_WriteClusterEvents, &r);
|
||||
|
||||
|
||||
status = cli_do_rpc_ndr(cli, mem_ctx, PI_EVENTLOG, &ndr_table_eventlog, NDR_EVENTLOG_WRITECLUSTEREVENTS, &r);
|
||||
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_OUT_DEBUG(eventlog_WriteClusterEvents, &r);
|
||||
|
||||
|
||||
if (NT_STATUS_IS_ERR(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
/* Return variables */
|
||||
|
||||
|
||||
/* Return result */
|
||||
return r.out.result;
|
||||
}
|
||||
@ -667,27 +667,27 @@ NTSTATUS rpccli_eventlog_GetLogIntormation(struct rpc_pipe_client *cli, TALLOC_C
|
||||
{
|
||||
struct eventlog_GetLogIntormation r;
|
||||
NTSTATUS status;
|
||||
|
||||
|
||||
/* In parameters */
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_IN_DEBUG(eventlog_GetLogIntormation, &r);
|
||||
|
||||
|
||||
status = cli_do_rpc_ndr(cli, mem_ctx, PI_EVENTLOG, &ndr_table_eventlog, NDR_EVENTLOG_GETLOGINTORMATION, &r);
|
||||
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_OUT_DEBUG(eventlog_GetLogIntormation, &r);
|
||||
|
||||
|
||||
if (NT_STATUS_IS_ERR(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
/* Return variables */
|
||||
|
||||
|
||||
/* Return result */
|
||||
return r.out.result;
|
||||
}
|
||||
@ -696,28 +696,28 @@ NTSTATUS rpccli_eventlog_FlushEventLog(struct rpc_pipe_client *cli, TALLOC_CTX *
|
||||
{
|
||||
struct eventlog_FlushEventLog r;
|
||||
NTSTATUS status;
|
||||
|
||||
|
||||
/* In parameters */
|
||||
r.in.handle = handle;
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_IN_DEBUG(eventlog_FlushEventLog, &r);
|
||||
|
||||
|
||||
status = cli_do_rpc_ndr(cli, mem_ctx, PI_EVENTLOG, &ndr_table_eventlog, NDR_EVENTLOG_FLUSHEVENTLOG, &r);
|
||||
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_OUT_DEBUG(eventlog_FlushEventLog, &r);
|
||||
|
||||
|
||||
if (NT_STATUS_IS_ERR(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
/* Return variables */
|
||||
|
||||
|
||||
/* Return result */
|
||||
return r.out.result;
|
||||
}
|
||||
|
@ -10,37 +10,37 @@ NTSTATUS rpccli_initshutdown_Init(struct rpc_pipe_client *cli, TALLOC_CTX *mem_c
|
||||
{
|
||||
struct initshutdown_Init r;
|
||||
NTSTATUS status;
|
||||
|
||||
|
||||
/* In parameters */
|
||||
r.in.hostname = hostname;
|
||||
r.in.message = message;
|
||||
r.in.timeout = timeout;
|
||||
r.in.force_apps = force_apps;
|
||||
r.in.reboot = reboot;
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_IN_DEBUG(initshutdown_Init, &r);
|
||||
|
||||
|
||||
status = cli_do_rpc_ndr(cli, mem_ctx, PI_INITSHUTDOWN, &ndr_table_initshutdown, NDR_INITSHUTDOWN_INIT, &r);
|
||||
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_OUT_DEBUG(initshutdown_Init, &r);
|
||||
|
||||
|
||||
if (NT_STATUS_IS_ERR(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
/* Return variables */
|
||||
|
||||
|
||||
/* Return result */
|
||||
if (werror) {
|
||||
*werror = r.out.result;
|
||||
}
|
||||
|
||||
|
||||
return werror_to_ntstatus(r.out.result);
|
||||
}
|
||||
|
||||
@ -48,33 +48,33 @@ NTSTATUS rpccli_initshutdown_Abort(struct rpc_pipe_client *cli, TALLOC_CTX *mem_
|
||||
{
|
||||
struct initshutdown_Abort r;
|
||||
NTSTATUS status;
|
||||
|
||||
|
||||
/* In parameters */
|
||||
r.in.server = server;
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_IN_DEBUG(initshutdown_Abort, &r);
|
||||
|
||||
|
||||
status = cli_do_rpc_ndr(cli, mem_ctx, PI_INITSHUTDOWN, &ndr_table_initshutdown, NDR_INITSHUTDOWN_ABORT, &r);
|
||||
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_OUT_DEBUG(initshutdown_Abort, &r);
|
||||
|
||||
|
||||
if (NT_STATUS_IS_ERR(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
/* Return variables */
|
||||
|
||||
|
||||
/* Return result */
|
||||
if (werror) {
|
||||
*werror = r.out.result;
|
||||
}
|
||||
|
||||
|
||||
return werror_to_ntstatus(r.out.result);
|
||||
}
|
||||
|
||||
@ -82,7 +82,7 @@ NTSTATUS rpccli_initshutdown_InitEx(struct rpc_pipe_client *cli, TALLOC_CTX *mem
|
||||
{
|
||||
struct initshutdown_InitEx r;
|
||||
NTSTATUS status;
|
||||
|
||||
|
||||
/* In parameters */
|
||||
r.in.hostname = hostname;
|
||||
r.in.message = message;
|
||||
@ -90,30 +90,30 @@ NTSTATUS rpccli_initshutdown_InitEx(struct rpc_pipe_client *cli, TALLOC_CTX *mem
|
||||
r.in.force_apps = force_apps;
|
||||
r.in.reboot = reboot;
|
||||
r.in.reason = reason;
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_IN_DEBUG(initshutdown_InitEx, &r);
|
||||
|
||||
|
||||
status = cli_do_rpc_ndr(cli, mem_ctx, PI_INITSHUTDOWN, &ndr_table_initshutdown, NDR_INITSHUTDOWN_INITEX, &r);
|
||||
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_OUT_DEBUG(initshutdown_InitEx, &r);
|
||||
|
||||
|
||||
if (NT_STATUS_IS_ERR(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
/* Return variables */
|
||||
|
||||
|
||||
/* Return result */
|
||||
if (werror) {
|
||||
*werror = r.out.result;
|
||||
}
|
||||
|
||||
|
||||
return werror_to_ntstatus(r.out.result);
|
||||
}
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -10,29 +10,29 @@ NTSTATUS rpccli_unixinfo_SidToUid(struct rpc_pipe_client *cli, TALLOC_CTX *mem_c
|
||||
{
|
||||
struct unixinfo_SidToUid r;
|
||||
NTSTATUS status;
|
||||
|
||||
|
||||
/* In parameters */
|
||||
r.in.sid = sid;
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_IN_DEBUG(unixinfo_SidToUid, &r);
|
||||
|
||||
|
||||
status = cli_do_rpc_ndr(cli, mem_ctx, PI_UNIXINFO, &ndr_table_unixinfo, NDR_UNIXINFO_SIDTOUID, &r);
|
||||
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_OUT_DEBUG(unixinfo_SidToUid, &r);
|
||||
|
||||
|
||||
if (NT_STATUS_IS_ERR(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
/* Return variables */
|
||||
*uid = *r.out.uid;
|
||||
|
||||
|
||||
/* Return result */
|
||||
return r.out.result;
|
||||
}
|
||||
@ -41,29 +41,29 @@ NTSTATUS rpccli_unixinfo_UidToSid(struct rpc_pipe_client *cli, TALLOC_CTX *mem_c
|
||||
{
|
||||
struct unixinfo_UidToSid r;
|
||||
NTSTATUS status;
|
||||
|
||||
|
||||
/* In parameters */
|
||||
r.in.uid = uid;
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_IN_DEBUG(unixinfo_UidToSid, &r);
|
||||
|
||||
|
||||
status = cli_do_rpc_ndr(cli, mem_ctx, PI_UNIXINFO, &ndr_table_unixinfo, NDR_UNIXINFO_UIDTOSID, &r);
|
||||
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_OUT_DEBUG(unixinfo_UidToSid, &r);
|
||||
|
||||
|
||||
if (NT_STATUS_IS_ERR(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
/* Return variables */
|
||||
*sid = *r.out.sid;
|
||||
|
||||
|
||||
/* Return result */
|
||||
return r.out.result;
|
||||
}
|
||||
@ -72,29 +72,29 @@ NTSTATUS rpccli_unixinfo_SidToGid(struct rpc_pipe_client *cli, TALLOC_CTX *mem_c
|
||||
{
|
||||
struct unixinfo_SidToGid r;
|
||||
NTSTATUS status;
|
||||
|
||||
|
||||
/* In parameters */
|
||||
r.in.sid = sid;
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_IN_DEBUG(unixinfo_SidToGid, &r);
|
||||
|
||||
|
||||
status = cli_do_rpc_ndr(cli, mem_ctx, PI_UNIXINFO, &ndr_table_unixinfo, NDR_UNIXINFO_SIDTOGID, &r);
|
||||
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_OUT_DEBUG(unixinfo_SidToGid, &r);
|
||||
|
||||
|
||||
if (NT_STATUS_IS_ERR(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
/* Return variables */
|
||||
*gid = *r.out.gid;
|
||||
|
||||
|
||||
/* Return result */
|
||||
return r.out.result;
|
||||
}
|
||||
@ -103,29 +103,29 @@ NTSTATUS rpccli_unixinfo_GidToSid(struct rpc_pipe_client *cli, TALLOC_CTX *mem_c
|
||||
{
|
||||
struct unixinfo_GidToSid r;
|
||||
NTSTATUS status;
|
||||
|
||||
|
||||
/* In parameters */
|
||||
r.in.gid = gid;
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_IN_DEBUG(unixinfo_GidToSid, &r);
|
||||
|
||||
|
||||
status = cli_do_rpc_ndr(cli, mem_ctx, PI_UNIXINFO, &ndr_table_unixinfo, NDR_UNIXINFO_GIDTOSID, &r);
|
||||
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_OUT_DEBUG(unixinfo_GidToSid, &r);
|
||||
|
||||
|
||||
if (NT_STATUS_IS_ERR(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
/* Return variables */
|
||||
*sid = *r.out.sid;
|
||||
|
||||
|
||||
/* Return result */
|
||||
return r.out.result;
|
||||
}
|
||||
@ -134,31 +134,31 @@ NTSTATUS rpccli_unixinfo_GetPWUid(struct rpc_pipe_client *cli, TALLOC_CTX *mem_c
|
||||
{
|
||||
struct unixinfo_GetPWUid r;
|
||||
NTSTATUS status;
|
||||
|
||||
|
||||
/* In parameters */
|
||||
r.in.count = count;
|
||||
r.in.uids = uids;
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_IN_DEBUG(unixinfo_GetPWUid, &r);
|
||||
|
||||
|
||||
status = cli_do_rpc_ndr(cli, mem_ctx, PI_UNIXINFO, &ndr_table_unixinfo, NDR_UNIXINFO_GETPWUID, &r);
|
||||
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
if (DEBUGLEVEL >= 10)
|
||||
NDR_PRINT_OUT_DEBUG(unixinfo_GetPWUid, &r);
|
||||
|
||||
|
||||
if (NT_STATUS_IS_ERR(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
|
||||
/* Return variables */
|
||||
*count = *r.out.count;
|
||||
memcpy(infos, r.out.infos, *r.in.count);
|
||||
|
||||
|
||||
/* Return result */
|
||||
return r.out.result;
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user