]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
Compile endpoint mapper pidl output
authorVolker Lendecke <vl@samba.org>
Thu, 24 Apr 2008 20:45:28 +0000 (22:45 +0200)
committerMichael Adam <obnox@samba.org>
Wed, 21 May 2008 21:35:26 +0000 (23:35 +0200)
source/Makefile.in
source/include/rpc_client.h
source/include/smb.h
source/rpc_parse/parse_rpc.c

index 21b4b1c5e9ff1aa55479a62850016d0e4aaa7341..6899faf91e372818f3632ba64fc90757a70296e1 100644 (file)
@@ -291,6 +291,7 @@ LIBNDR_GEN_OBJ = librpc/gen_ndr/ndr_wkssvc.o \
                 librpc/gen_ndr/ndr_dssetup.o \
                 librpc/gen_ndr/ndr_notify.o \
                 librpc/gen_ndr/ndr_xattr.o \
+                librpc/gen_ndr/ndr_epmapper.o \
                 librpc/gen_ndr/ndr_ntsvcs.o
 
 RPC_PARSE_OBJ0 = rpc_parse/parse_prs.o rpc_parse/parse_misc.o
@@ -467,6 +468,7 @@ LIBMSRPC_GEN_OBJ = librpc/gen_ndr/cli_lsa.o \
                   librpc/gen_ndr/cli_samr.o \
                   librpc/gen_ndr/cli_dssetup.o \
                   librpc/gen_ndr/cli_ntsvcs.o \
+                  librpc/gen_ndr/cli_epmapper.o \
                   $(LIBNDR_GEN_OBJ) \
                   $(RPCCLIENT_NDR_OBJ)
 
index ce0c9329818adf0c961776a07b44f52c180c31b2..4d1b1a77d190dbfa8f27d5d5cde4b5a4226ddacc 100644 (file)
@@ -35,6 +35,7 @@
 #include "librpc/gen_ndr/cli_netlogon.h"
 #include "librpc/gen_ndr/cli_dssetup.h"
 #include "librpc/gen_ndr/cli_ntsvcs.h"
+#include "librpc/gen_ndr/cli_epmapper.h"
 
 #define prs_init_empty( _ps_, _ctx_, _io_ ) (void) prs_init((_ps_), 0, (_ctx_), (_io_))
 
index d6b026d0134c20318ce4ad53dcc6001b7562e5e8..02151043a6252e8da2ac65cab710ae79bf014364 100644 (file)
@@ -189,6 +189,7 @@ typedef uint32 codepoint_t;
 #define PIPE_EPM      "\\PIPE\\epmapper"
 #define PIPE_SVCCTL   "\\PIPE\\svcctl"
 #define PIPE_EVENTLOG "\\PIPE\\eventlog"
+#define PIPE_EPMAPPER "\\PIPE\\epmapper"
 
 #define PIPE_NETLOGON_PLAIN "\\NETLOGON"
 
@@ -206,7 +207,8 @@ typedef uint32 codepoint_t;
 #define PI_SVCCTL              11
 #define PI_EVENTLOG            12
 #define PI_NTSVCS              13
-#define PI_MAX_PIPES           14
+#define PI_EPMAPPER            14
+#define PI_MAX_PIPES           15
 
 /* 64 bit time (100usec) since ????? - cifs6.txt, section 3.5, page 30 */
 typedef uint64_t NTTIME;
@@ -307,6 +309,7 @@ extern const DATA_BLOB data_blob_null;
 #include "librpc/gen_ndr/netlogon.h"
 #include "librpc/gen_ndr/samr.h"
 #include "librpc/gen_ndr/dssetup.h"
+#include "librpc/gen_ndr/epmapper.h"
 #include "librpc/gen_ndr/libnet_join.h"
 #include "librpc/gen_ndr/krb5pac.h"
 #include "librpc/gen_ndr/ntsvcs.h"
index d0be83bd4eb9810a11ca1f367dbc4222bacaa1ef..81719512ae3e2f6f340756dc0515c39463b9e49b 100644 (file)
@@ -59,6 +59,7 @@ const struct pipe_id_info pipe_names [] =
        { PIPE_SVCCTL  , &ndr_table_svcctl.syntax_id, PIPE_NTSVCS   , &ndr_transfer_syntax },
        { PIPE_EVENTLOG, &ndr_table_eventlog.syntax_id, PIPE_EVENTLOG , &ndr_transfer_syntax },
        { PIPE_NTSVCS  , &ndr_table_ntsvcs.syntax_id, PIPE_NTSVCS   , &ndr_transfer_syntax },
+       { PIPE_EPMAPPER  , &ndr_table_epmapper.syntax_id, PIPE_EPMAPPER   , &ndr_transfer_syntax },
        { NULL         , NULL                  , NULL          , NULL }
 };