summaryrefslogtreecommitdiff
path: root/source4/librpc/rpc/dcerpc.h
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2004-12-07 09:26:00 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:06:25 -0500
commit9b50dba87e7c668aac4aa7ba7b72ed20a50a95bc (patch)
treedb2f7dfda733acd364cd4c83934d06dbd1c16c63 /source4/librpc/rpc/dcerpc.h
parentcdeadf87ac767b8b60f08f62dc8c5efb4f4b609b (diff)
downloadsamba-9b50dba87e7c668aac4aa7ba7b72ed20a50a95bc.tar.gz
samba-9b50dba87e7c668aac4aa7ba7b72ed20a50a95bc.tar.bz2
samba-9b50dba87e7c668aac4aa7ba7b72ed20a50a95bc.zip
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)
Diffstat (limited to 'source4/librpc/rpc/dcerpc.h')
-rw-r--r--source4/librpc/rpc/dcerpc.h7
1 files changed, 3 insertions, 4 deletions
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;