From 9b50dba87e7c668aac4aa7ba7b72ed20a50a95bc Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Tue, 7 Dec 2004 09:26:00 +0000 Subject: r4086: - make dcerpc_ndr_request_table_send() the default and rename it to just dcerpc_ndr_request_send() - this allows us to call dcerpc_log_packet() when we receive a packet we can't parse correctly metze (This used to be commit a7a6cea112a180a28188997ca99f30d8dd286bb8) --- source4/librpc/rpc/dcerpc.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'source4/librpc/rpc/dcerpc.h') diff --git a/source4/librpc/rpc/dcerpc.h b/source4/librpc/rpc/dcerpc.h index 47f13e643d..1b2feeadb2 100644 --- a/source4/librpc/rpc/dcerpc.h +++ b/source4/librpc/rpc/dcerpc.h @@ -181,11 +181,10 @@ struct rpc_request { uint32_t fault_code; /* use by the ndr level async recv call */ - struct rpc_request_ndr { - NTSTATUS (*ndr_push)(struct ndr_push *, int, void *); - NTSTATUS (*ndr_pull)(struct ndr_pull *, int, void *); + struct { + const struct dcerpc_interface_table *table; + uint32_t opnum; void *struct_ptr; - size_t struct_size; TALLOC_CTX *mem_ctx; } ndr; -- cgit