diff options
author | Jean-François Micouleau <jfm@samba.org> | 1999-05-03 22:04:02 +0000 |
---|---|---|
committer | Jean-François Micouleau <jfm@samba.org> | 1999-05-03 22:04:02 +0000 |
commit | 4e5bf481fba36655e8fc8e04f6f67ba17dcb9844 (patch) | |
tree | 51967337c3f5f48cc2f6c93d1957f83135fd794e /source3/rpc_parse | |
parent | 9ac038817ea75db29ccf7d6d149483eeaa88ecb6 (diff) | |
download | samba-4e5bf481fba36655e8fc8e04f6f67ba17dcb9844.tar.gz samba-4e5bf481fba36655e8fc8e04f6f67ba17dcb9844.tar.bz2 samba-4e5bf481fba36655e8fc8e04f6f67ba17dcb9844.zip |
last part of RPC api change.
and of rpcclient eventlog funtion
Jean Francois
(This used to be commit 7fc8659e83bf0269df297016beac6793ff0bdf32)
Diffstat (limited to 'source3/rpc_parse')
-rw-r--r-- | source3/rpc_parse/parse_rpc.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/source3/rpc_parse/parse_rpc.c b/source3/rpc_parse/parse_rpc.c index 2f47f06e36..524c4201ad 100644 --- a/source3/rpc_parse/parse_rpc.c +++ b/source3/rpc_parse/parse_rpc.c @@ -152,6 +152,16 @@ interface/version dce/rpc pipe identification }, 0x00 \ } \ +#define SYNT_EVENTLOG_V0 \ +{ \ + { \ + 0xdc, 0x3f, 0x27, 0x82, \ + 0x2a, 0xe3, 0xc3, 0x18, \ + 0x3f, 0x78, 0x82, 0x79, \ + 0x29, 0xdc, 0x23, 0xea \ + }, 0x00 \ +} + \ struct pipe_id_info pipe_names [] = { /* client pipe , abstract syntax , server pipe , transfer syntax */ @@ -164,6 +174,7 @@ struct pipe_id_info pipe_names [] = { PIPE_WINREG , SYNT_WINREG_V1 , PIPE_WINREG , TRANS_SYNT_V2 }, { PIPE_ATSVC , SYNT_ATSVC_V1 , PIPE_ATSVC , TRANS_SYNT_V2 }, { PIPE_SPOOLSS , SYNT_SPOOLSS_V1 , PIPE_SPOOLSS , TRANS_SYNT_V2 }, + { PIPE_EVENTLOG, SYNT_EVENTLOG_V0, PIPE_EVENTLOG , TRANS_SYNT_V2 }, { NULL , SYNT_NONE_V0 , NULL , SYNT_NONE_V0 } }; |