diff options
author | Jim McDonough <jmcd@samba.org> | 2003-10-24 13:49:25 +0000 |
---|---|---|
committer | Jim McDonough <jmcd@samba.org> | 2003-10-24 13:49:25 +0000 |
commit | 65ae858c1b49efa64c759a914b09204eca14db42 (patch) | |
tree | 55729d4e511f6824b2b4496e6df55ce769dc6435 /source3/rpc_parse | |
parent | 6258550534050e59a80ae8e39d9fb308b2e648fb (diff) | |
download | samba-65ae858c1b49efa64c759a914b09204eca14db42.tar.gz samba-65ae858c1b49efa64c759a914b09204eca14db42.tar.bz2 samba-65ae858c1b49efa64c759a914b09204eca14db42.zip |
Add initshutdown pipe commands to rpcclient. Second part of fix to bug
#534
(This used to be commit 99f4fa54497ba1c0fc0ba39d51b3ce201a8e6cd2)
Diffstat (limited to 'source3/rpc_parse')
-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 f053297192..18ac37778c 100644 --- a/source3/rpc_parse/parse_rpc.c +++ b/source3/rpc_parse/parse_rpc.c @@ -147,6 +147,15 @@ interface/version dce/rpc pipe identification }, 0x01 \ } +#define SYNT_SHUTDOWN_V1 \ +{ \ + { \ + 0x894de0c0, 0x0d55, 0x11d3, \ + { 0xa3, 0x22, 0x00, 0xc0, \ + 0x4f, 0xa3, 0x21, 0xa1 } \ + }, 0x01 \ +} + #define SYNT_EPM_V3 \ { \ { \ @@ -174,6 +183,7 @@ const struct pipe_id_info pipe_names [] = { 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 }, + { PIPE_SHUTDOWN, SYNT_SHUTDOWN_V1 , PIPE_SHUTDOWN , TRANS_SYNT_V2 }, { PIPE_EPM , SYNT_EPM_V3 , PIPE_EPM , TRANS_SYNT_V2 }, { NULL , SYNT_NONE_V0 , NULL , SYNT_NONE_V0 } }; |