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)
commit3d589a09954eb8b318f567e1150b0c27412fb942
tree449ace9192c7ca06f4962a564a80e2091de76a1d
parent422579215462c31dd863ab1b7f187003dafd0af2
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.
15 files changed:
source/include/messages.h
source/lib/messaging/config.mk
source/lib/messaging/irpc.h [new file with mode: 0644]
source/lib/messaging/messaging.c
source/librpc/config.mk
source/librpc/idl/irpc.idl [new file with mode: 0644]
source/ntvfs/common/brlock.c
source/ntvfs/common/opendb.c
source/ntvfs/posix/pvfs_wait.c
source/smbd/service_stream.c
source/smbd/service_task.c
source/torture/config.mk
source/torture/local/irpc.c [new file with mode: 0644]
source/torture/local/messaging.c
source/torture/torture.c