diff options
author | Tim Potter <tpot@samba.org> | 2003-04-14 02:08:03 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2003-04-14 02:08:03 +0000 |
commit | 3b865c73989e7f13e3a6453f9f9c9a7aca74b129 (patch) | |
tree | 453336f098c536d0ec79d3bf899e00ac107d2fab /source3/rpc_parse/parse_rpc.c | |
parent | 3ef2a0b3ff93436b13318748574b0aebb4da56ab (diff) | |
download | samba-3b865c73989e7f13e3a6453f9f9c9a7aca74b129.tar.gz samba-3b865c73989e7f13e3a6453f9f9c9a7aca74b129.tar.xz samba-3b865c73989e7f13e3a6453f9f9c9a7aca74b129.zip |
Merge of rpcecho pipe for testing large dcerpc requests and responses.
Only compiled in when --enable-developer argument passed to configure.
(This used to be commit 017da9393bab276543d0d5c50df8c760780f2450)
Diffstat (limited to 'source3/rpc_parse/parse_rpc.c')
-rw-r--r-- | source3/rpc_parse/parse_rpc.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/source3/rpc_parse/parse_rpc.c b/source3/rpc_parse/parse_rpc.c index 656082e05a..30909c6910 100644 --- a/source3/rpc_parse/parse_rpc.c +++ b/source3/rpc_parse/parse_rpc.c @@ -138,6 +138,15 @@ interface/version dce/rpc pipe identification }, 0x03 \ } +#define SYNT_ECHO_V1 \ +{ \ + { \ + 0x60a15ec5, 0x4de8, 0x11d7, \ + { 0xa6, 0x37, 0x00, 0x50, \ + 0x56, 0xa2, 0x01, 0x82 } \ + }, 0x01 \ +} + /* * IMPORTANT!! If you update this structure, make sure to * update the index #defines in smb.h. @@ -155,6 +164,7 @@ const struct pipe_id_info pipe_names [] = { PIPE_WINREG , SYNT_WINREG_V1 , PIPE_WINREG , TRANS_SYNT_V2 }, { PIPE_SPOOLSS , SYNT_SPOOLSS_V1 , PIPE_SPOOLSS , TRANS_SYNT_V2 }, { PIPE_NETDFS , SYNT_NETDFS_V3 , PIPE_NETDFS , TRANS_SYNT_V2 }, + { PIPE_ECHO , SYNT_ECHO_V1 , PIPE_ECHO , TRANS_SYNT_V2 }, { NULL , SYNT_NONE_V0 , NULL , SYNT_NONE_V0 } }; |