diff options
author | Simo Sorce <idra@samba.org> | 2010-07-13 23:56:01 -0400 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2010-07-16 01:51:16 +0200 |
commit | 2452a7a4c1094047f4c67f0901b746e069639f8f (patch) | |
tree | 3e5fed74f935c84e9c254997e80780dff273dd96 /source3/include | |
parent | 8cd3912afa51468e14d13b77394a308dd184b775 (diff) | |
download | samba-2452a7a4c1094047f4c67f0901b746e069639f8f.tar.gz samba-2452a7a4c1094047f4c67f0901b746e069639f8f.tar.bz2 samba-2452a7a4c1094047f4c67f0901b746e069639f8f.zip |
s3-dcerpc: consolidate respones packet creation code
Signed-off-by: Günther Deschner <gd@samba.org>
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 1 | ||||
-rw-r--r-- | source3/include/rpc_dce.h | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index fbd3d91063..08c7020853 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -4843,6 +4843,7 @@ 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 *syntax); +enum dcerpc_AuthType map_pipe_auth_type_to_rpc_auth_type(enum pipe_auth_type auth_type); struct tevent_req *rpc_api_pipe_req_send(TALLOC_CTX *mem_ctx, struct event_context *ev, diff --git a/source3/include/rpc_dce.h b/source3/include/rpc_dce.h index e663a56ad6..32ab19c157 100644 --- a/source3/include/rpc_dce.h +++ b/source3/include/rpc_dce.h @@ -22,7 +22,7 @@ #ifndef _DCE_RPC_H /* _DCE_RPC_H */ #define _DCE_RPC_H -#define RPC_AUTH_SCHANNEL_SIGN_OR_SEAL_CHK_LEN 0x20 +#define SCHANNEL_SIG_SIZE 0x20 /* Maximum size of the signing data in a fragment. */ #define RPC_MAX_SIGN_SIZE 0x38 /* 56 */ |