summaryrefslogtreecommitdiffstats
path: root/src/afb-config.h
diff options
context:
space:
mode:
authorJosé Bollo <jose.bollo@iot.bzh>2016-05-10 17:20:39 +0200
committerJosé Bollo <jose.bollo@iot.bzh>2016-05-10 17:20:39 +0200
commitd50bd20d0a95a87f4308bdd908f3d54aa0a01a5f (patch)
tree6fad3dce0af59d9456cbb7cd9fc2225e07300f08 /src/afb-config.h
parent7ea1657b459aea2cc6ef9332621a19d7e2676b1d (diff)
implmentation of dbus-service activated
Change-Id: I7fb1bb9d2e1f02fb746f45b803c0798ff0d7336c Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'src/afb-config.h')
-rw-r--r--src/afb-config.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/afb-config.h b/src/afb-config.h
index 0cd827e8..bd98baa3 100644
--- a/src/afb-config.h
+++ b/src/afb-config.h
@@ -33,6 +33,13 @@
#define CTX_NBCLIENTS 10 // allow a default of 10 authenticated clients
+struct afb_config_item
+{
+ struct afb_config_item *previous;
+ int kind;
+ char *value;
+};
+
// main config structure
struct afb_config
{
@@ -51,6 +58,7 @@ struct afb_config
int cntxTimeout; // Client Session Context timeout
int mode; // mode of listening
int aliascount;
+ struct afb_config_item *items;
struct {
char *url;
char *path;