Implement Esa Event Service (EES)

The Esa Event Service can be used to trigger ESP SA (ESA) events such as
acquire or expire. The incoming events are forwarded to the hydra kernel
interface for processing.
This commit is contained in:
Reto Buerki
2013-03-19 15:23:48 +01:00
committed by Tobias Brunner
parent d9c6480688
commit e0cb01f44d
10 changed files with 272 additions and 7 deletions
+14 -2
View File
@@ -1,10 +1,22 @@
with "tkmrpc_client";
with "tkmrpc_server-ees";
project Build_Common is
for Source_Dirs use ();
Obj_Dir := "obj";
Compiler_Switches := ("-W", "-Wall", "-Wno-unused-parameter");
Obj_Dir := "obj";
C_Compiler_Switches := ("-W",
"-Wall",
"-Wno-unused-parameter");
Ada_Compiler_Switches := ("-gnatwale",
"-gnatygAdISuxo",
"-gnata",
"-gnatVa",
"-gnat05",
"-gnatf",
"-fstack-check",
"-gnato",
"-g");
end Build_Common;