summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
Diffstat (limited to 'src/common')
-rw-r--r--src/common/defs.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/common/defs.h b/src/common/defs.h
index dcced15..b931bd9 100644
--- a/src/common/defs.h
+++ b/src/common/defs.h
@@ -85,10 +85,20 @@ struct Data
NODE_ACTIVATE _disable_op; //is this node currently deactivated?
};
+/*
+ * additional data to be defined and used by client
+ */
+struct Aux
+{
+ boolean _first;
+ boolean _last;
+};
+
struct VyattaNode
{
struct Data _data;
struct Config _config;
+ struct Aux _aux;
};
#endif //__DEFS_H__