r7294: implemented the irpc messaging system. This is the core of the
authorAndrew Tridgell <tridge@samba.org>
Sun, 5 Jun 2005 06:53:07 +0000 (06:53 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 18:17:37 +0000 (13:17 -0500)
commitbf1ffa283caef6a3c98b5cc7f5bc8205c2818b06
tree11b434e632aaee2472c906b7ddb9d14fdfd48e38
parent03840652354598db203a3596077ecc55726880c8
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)
15 files changed:
source4/include/messages.h
source4/lib/messaging/config.mk
source4/lib/messaging/irpc.h [new file with mode: 0644]
source4/lib/messaging/messaging.c
source4/librpc/config.mk
source4/librpc/idl/irpc.idl [new file with mode: 0644]
source4/ntvfs/common/brlock.c
source4/ntvfs/common/opendb.c
source4/ntvfs/posix/pvfs_wait.c
source4/smbd/service_stream.c
source4/smbd/service_task.c
source4/torture/config.mk
source4/torture/local/irpc.c [new file with mode: 0644]
source4/torture/local/messaging.c
source4/torture/torture.c