From 762a6a14e8e99b079a226350eec8605edc51a8f9 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Mon, 18 Jul 2005 23:58:59 +0000 Subject: r8559: Couple of (D)COM updates: - Fixes annoying array-of-pointers bug in pidl. - No longer "inherit" alignment thru subcontexts - Use "Image Object" as example DCOM object, rather then the "My Computer" object, which is built-in and can't be accessed remotely as far as I can see (This used to be commit bd706d496405d274b68c1ee560211837a8e63009) --- source4/torture/rpc/remact.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'source4/torture/rpc/remact.c') diff --git a/source4/torture/rpc/remact.c b/source4/torture/rpc/remact.c index 1d145dd1cb..bbda197854 100644 --- a/source4/torture/rpc/remact.c +++ b/source4/torture/rpc/remact.c @@ -24,24 +24,25 @@ #include "librpc/gen_ndr/ndr_epmapper.h" #include "librpc/gen_ndr/com_dcom.h" +#define CLSID_IMAGEDOC "02B01C80-E03D-101A-B294-00DD010F2BF9" + static int test_RemoteActivation(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx) { struct RemoteActivation r; NTSTATUS status; - struct GUID iids[2]; + struct GUID iids[1]; uint16_t protseq[3] = { EPM_PROTOCOL_TCP, EPM_PROTOCOL_NCALRPC, EPM_PROTOCOL_UUID }; ZERO_STRUCT(r.in); r.in.this.version.MajorVersion = 5; r.in.this.version.MinorVersion = 1; r.in.this.cid = GUID_random(); - GUID_from_string(CLSID_SIMPLE, &r.in.Clsid); + GUID_from_string(CLSID_IMAGEDOC, &r.in.Clsid); r.in.ClientImpLevel = RPC_C_IMP_LEVEL_IDENTIFY; r.in.num_protseqs = 3; r.in.protseq = protseq; - r.in.Interfaces = 2; + r.in.Interfaces = 1; GUID_from_string(DCERPC_IUNKNOWN_UUID, &iids[0]); - GUID_from_string(DCERPC_ISTREAM_UUID, &iids[1]); r.in.pIIDs = iids; status = dcerpc_RemoteActivation(p, mem_ctx, &r); -- cgit