diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2007-04-03 12:28:40 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:19:06 -0500 |
commit | 0389cad7c492eda5aee590d0396748c7da9b44ff (patch) | |
tree | 13bb3ae9d118d2eb17e374be0a2a675d03f11ff6 /source3/rpc_parse | |
parent | 4432df38eeffa3f9d63b908ce2d0af8d00297078 (diff) | |
download | samba-0389cad7c492eda5aee590d0396748c7da9b44ff.tar.gz samba-0389cad7c492eda5aee590d0396748c7da9b44ff.tar.bz2 samba-0389cad7c492eda5aee590d0396748c7da9b44ff.zip |
r22055: Port the endpoint mapper (and functions it requires) to Samba 3.
(This used to be commit ad981261877e6a2dce0c4f4e71fd9127aa31538a)
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 240cac886c..39156d5ef8 100644 --- a/source3/rpc_parse/parse_rpc.c +++ b/source3/rpc_parse/parse_rpc.c @@ -211,6 +211,16 @@ interface/version dce/rpc pipe identification }, 0x01 \ } +#define SYNT_EPMAPPER_V3 \ +{ \ + { \ + 0xe1af8308, 0x5d1f,0x11c9, \ + { 0x91,0xa4}, \ + {0x08,0x00, \ + 0x2b,0x14,0xa0,0xfa} \ + }, 0x03 \ +} + /* * IMPORTANT!! If you update this structure, make sure to * update the index #defines in smb.h. @@ -234,6 +244,7 @@ const struct pipe_id_info pipe_names [] = { PIPE_EVENTLOG, SYNT_EVENTLOG_V0 , PIPE_EVENTLOG , TRANS_SYNT_V2 }, { PIPE_UNIXINFO, SYNT_UNIXINFO_V0 , PIPE_UNIXINFO , TRANS_SYNT_V2 }, { PIPE_NTSVCS , SYNT_NTSVCS_V1 , PIPE_NTSVCS , TRANS_SYNT_V2 }, + { PIPE_EPMAPPER, SYNT_EPMAPPER_V3 , PIPE_EPMAPPER , TRANS_SYNT_V2 }, { NULL , SYNT_NONE_V0 , NULL , SYNT_NONE_V0 } }; |