diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2004-11-08 02:12:15 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:05:39 -0500 |
commit | 8c2e179d477c99ab9c52e6b9af19a86d553d10b5 (patch) | |
tree | 386d8be6564c95686da8bf3eafb16de211dd28bc /source4/lib | |
parent | 009892846fb25e6698c8e38c46cae3512abb7ec6 (diff) | |
download | samba-8c2e179d477c99ab9c52e6b9af19a86d553d10b5.tar.gz samba-8c2e179d477c99ab9c52e6b9af19a86d553d10b5.tar.bz2 samba-8c2e179d477c99ab9c52e6b9af19a86d553d10b5.zip |
r3611: DCOM client support works!!
The torture test DCOM-SIMPLE now successfully does an
IStream_Read and a IStream_Write call.
This test can now be run successfully against the "Simple DCOM" Visual
Studio example.
(You have to quote out line 337 in pidl. pidl complains if the variable
that contains the array size follows the array. I still need to fix this
properly)
Next goals:
- Clean up code
- Server side support
- Support custom marshalling
- Support DCOM interfaces in files other then dcom.idl
(This used to be commit 8693344772a9b700533179f4bacfe27ec27dfcfe)
Diffstat (limited to 'source4/lib')
-rw-r--r-- | source4/lib/dcom/common/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/lib/dcom/common/main.c b/source4/lib/dcom/common/main.c index a4fcb7ec0d..8b947ba8ef 100644 --- a/source4/lib/dcom/common/main.c +++ b/source4/lib/dcom/common/main.c @@ -128,6 +128,8 @@ NTSTATUS dcerpc_IUnknown_Release(struct dcom_interface *p, TALLOC_CTX *mem_ctx, struct RemRelease r; struct REMINTERFACEREF ref; + return NT_STATUS_NOT_SUPPORTED; + p->private_references--; /* Only do the remote version of this call when all local references have @@ -314,8 +316,6 @@ NTSTATUS dcom_get_pipe (struct dcom_interface *iface, struct dcerpc_pipe **p) return NT_STATUS_NOT_SUPPORTED; } - DEBUG(1, ("DCOM: Connecting to %s\n", GUID_string(NULL, &iface->objref->iid))); - oxid = iface->objref->u_objref.u_standard.std.oxid; iid = iface->objref->iid; |