diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-06-05 06:53:07 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:17:37 -0500 |
commit | bf1ffa283caef6a3c98b5cc7f5bc8205c2818b06 (patch) | |
tree | 11b434e632aaee2472c906b7ddb9d14fdfd48e38 /source4/ntvfs/posix | |
parent | 03840652354598db203a3596077ecc55726880c8 (diff) | |
download | samba-bf1ffa283caef6a3c98b5cc7f5bc8205c2818b06.tar.gz samba-bf1ffa283caef6a3c98b5cc7f5bc8205c2818b06.tar.bz2 samba-bf1ffa283caef6a3c98b5cc7f5bc8205c2818b06.zip |
r7294: implemented the irpc messaging system. This is the core of the
management system I proposed on samba-technical a couple of days
ago. Essentially it is a very lightweight way for any code in Samba to
make IDL based rpc calls to anywhere else in the code, without the
client or server having to go to the trouble of setting up a full rpc
service.
It can be used with any of our existing IDL, but I expect it will
mostly be used for a new set of Samba specific management calls.
The LOCAL-IRPC torture test demonstrates how it can be used by calling
the echo_AddOne() call over this transport.
(This used to be commit 3d589a09954eb8b318f567e1150b0c27412fb942)
Diffstat (limited to 'source4/ntvfs/posix')
-rw-r--r-- | source4/ntvfs/posix/pvfs_wait.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source4/ntvfs/posix/pvfs_wait.c b/source4/ntvfs/posix/pvfs_wait.c index e9c4a2f754..3574a30583 100644 --- a/source4/ntvfs/posix/pvfs_wait.c +++ b/source4/ntvfs/posix/pvfs_wait.c @@ -25,6 +25,7 @@ #include "dlinklist.h" #include "vfs_posix.h" #include "smbd/service_stream.h" +#include "lib/messaging/irpc.h" /* the context for a single wait instance */ struct pvfs_wait { |