diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2004-11-21 17:47:09 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:06:02 -0500 |
commit | cc368fa69e6a205516c64712aee701fe0cf6d20b (patch) | |
tree | 9688c0f03239c0b969c54ab6eb82d52800f9a193 /source4/lib/dcom/common/rot.c | |
parent | a4de8cd6a5a882a8d49fdb4b0e625ffdc6b401bb (diff) | |
download | samba-cc368fa69e6a205516c64712aee701fe0cf6d20b.tar.gz samba-cc368fa69e6a205516c64712aee701fe0cf6d20b.tar.bz2 samba-cc368fa69e6a205516c64712aee701fe0cf6d20b.zip |
r3898: Work towards local/server DCOM support, start working
on Simple example server side implementation
(This used to be commit 98afb504d95ccca4d6ec48273e10b52ccfa26ad0)
Diffstat (limited to 'source4/lib/dcom/common/rot.c')
-rw-r--r-- | source4/lib/dcom/common/rot.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/source4/lib/dcom/common/rot.c b/source4/lib/dcom/common/rot.c index 95f83d000c..7acdbe066e 100644 --- a/source4/lib/dcom/common/rot.c +++ b/source4/lib/dcom/common/rot.c @@ -22,9 +22,13 @@ #include "includes.h" - -struct dcom_interface_p *dcom_get_iface_p(struct GUID *ipid) +struct dcom_interface_p *dcom_get_local_iface_p(struct GUID *ipid) { - /* FIXME */ + /* FIXME: Call the local ROT and do a + * rot_get_interface_pointer call */ + + /* FIXME: Perhaps have a local (thread-local) table with + * local DCOM objects so that not every DCOM call requires a lookup + * to the ROT? */ return NULL; } |