From 77e3fffd09e5548ded472bed25109ddda2d45b30 Mon Sep 17 00:00:00 2001 From: =?utf8?q?G=C3=BCnther=20Deschner?= Date: Wed, 1 Apr 2009 23:07:03 +0200 Subject: [PATCH] s3-dcerpc: add dcerpc_pull_ncacn_packet_header(). Guenther Signed-off-by: Simo Sorce --- source3/include/proto.h | 3 +++ source3/rpc_client/cli_pipe.c | 22 ++++++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/source3/include/proto.h b/source3/include/proto.h index ed1dc3d400..99afcf3e05 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -4844,6 +4844,9 @@ NTSTATUS dcerpc_push_ncacn_packet(TALLOC_CTX *mem_ctx, NTSTATUS dcerpc_pull_ncacn_packet(TALLOC_CTX *mem_ctx, const DATA_BLOB *blob, struct ncacn_packet *r); +NTSTATUS dcerpc_pull_ncacn_packet_header(TALLOC_CTX *mem_ctx, + const DATA_BLOB *blob, + struct ncacn_packet_header *r); struct tevent_req *rpc_pipe_bind_send(TALLOC_CTX *mem_ctx, struct event_context *ev, struct rpc_pipe_client *cli, diff --git a/source3/rpc_client/cli_pipe.c b/source3/rpc_client/cli_pipe.c index 8969c14db8..5d4d19bf6f 100644 --- a/source3/rpc_client/cli_pipe.c +++ b/source3/rpc_client/cli_pipe.c @@ -357,6 +357,28 @@ NTSTATUS dcerpc_pull_ncacn_packet(TALLOC_CTX *mem_ctx, return NT_STATUS_OK; } +/******************************************************************* +*******************************************************************/ + +NTSTATUS dcerpc_pull_ncacn_packet_header(TALLOC_CTX *mem_ctx, + const DATA_BLOB *blob, + struct ncacn_packet_header *r) +{ + enum ndr_err_code ndr_err; + + ndr_err = ndr_pull_struct_blob(blob, mem_ctx, r, + (ndr_pull_flags_fn_t)ndr_pull_ncacn_packet_header); + if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) { + return ndr_map_error2ntstatus(ndr_err); + } + + if (DEBUGLEVEL >= 10) { + NDR_PRINT_DEBUG(ncacn_packet_header, r); + } + + return NT_STATUS_OK; +} + /******************************************************************* ********************************************************************/ -- 2.34.1