diff options
author | Volker Lendecke <vl@samba.org> | 2009-11-01 12:05:14 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-11-07 09:14:16 +0100 |
commit | cd16e38e32013c8abb872c179c7f8bf33c92ed25 (patch) | |
tree | d06b3673c0d7a9e4a9baca946b0a6c9a173c16bc /source3/include | |
parent | 268df12ab6b60052d4f5e8ff723f2528ace0dbfb (diff) | |
download | samba-cd16e38e32013c8abb872c179c7f8bf33c92ed25.tar.gz samba-cd16e38e32013c8abb872c179c7f8bf33c92ed25.tar.xz samba-cd16e38e32013c8abb872c179c7f8bf33c92ed25.zip |
s3: Register the ndr_interfaces dynamically
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 9328c927ee7..e57ffdd5710 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -5703,8 +5703,11 @@ bool prs_data_blob(prs_struct *prs, DATA_BLOB *blob, TALLOC_CTX *mem_ctx); /* The following definitions come from rpc_parse/parse_rpc.c */ +bool smb_register_ndr_interface(const struct ndr_interface_table *interface); +const struct ndr_interface_table *get_iface_from_syntax( + const struct ndr_syntax_id *syntax); const char *get_pipe_name_from_syntax(TALLOC_CTX *mem_ctx, - const struct ndr_syntax_id *interface); + const struct ndr_syntax_id *syntax); void init_rpc_hdr(RPC_HDR *hdr, enum dcerpc_pkt_type pkt_type, uint8 flags, uint32 call_id, int data_len, int auth_len); bool smb_io_rpc_hdr(const char *desc, RPC_HDR *rpc, prs_struct *ps, int depth); |