plugins: added a prototype decision plugin.
authorKrisztian Litkey <krisztian.litkey@intel.com>
Thu, 4 Oct 2012 06:47:48 +0000 (09:47 +0300)
committerKrisztian Litkey <krisztian.litkey@intel.com>
Fri, 26 Oct 2012 16:16:00 +0000 (19:16 +0300)
commitf7b9ba0c28263a056243df5a886ba00c0e42460d
treea96945f0cc1e4ee8b0feb7321343963a190d5894
parent7b811b1033d207c04c696b49f9c04e423018ac4a
plugins: added a prototype decision plugin.

The decision-proto plugin provides a client library through which
enfocement points can publish their own data to the murphy DB and
also subscribe for data published by ohter entities (not just
enforement points) to the DB.
19 files changed:
configure.ac
src/Makefile.am
src/plugins/decision-proto/Makefile [new file with mode: 0644]
src/plugins/decision-proto/client.c [new file with mode: 0644]
src/plugins/decision-proto/client.h [new file with mode: 0644]
src/plugins/decision-proto/decision-types.h [new file with mode: 0644]
src/plugins/decision-proto/decision.c [new file with mode: 0644]
src/plugins/decision-proto/decision.h [new file with mode: 0644]
src/plugins/decision-proto/message.c [new file with mode: 0644]
src/plugins/decision-proto/message.h [new file with mode: 0644]
src/plugins/decision-proto/notify.c [new file with mode: 0644]
src/plugins/decision-proto/notify.h [new file with mode: 0644]
src/plugins/decision-proto/plugin-decision.c [new file with mode: 0644]
src/plugins/decision-proto/proxy.c [new file with mode: 0644]
src/plugins/decision-proto/proxy.h [new file with mode: 0644]
src/plugins/decision-proto/table-common.c [new file with mode: 0644]
src/plugins/decision-proto/table.c [new file with mode: 0644]
src/plugins/decision-proto/table.h [new file with mode: 0644]
src/plugins/decision-proto/test-client.c [new file with mode: 0644]