service: add data within the service itself
[project/procd.git] / service / service.h
index d4f0a83..8f94ecd 100644 (file)
@@ -18,6 +18,7 @@
 #include <libubox/avl.h>
 #include <libubox/vlist.h>
 #include <libubox/list.h>
+#include "../utils/utils.h"
 
 extern struct avl_tree services;
 
@@ -40,10 +41,14 @@ struct validate {
 struct service {
        struct avl_node avl;
        const char *name;
+       bool deleted;
+       bool autostart;
 
        struct blob_attr *trigger;
        struct vlist_tree instances;
        struct list_head validators;
+       struct blob_attr *data;
+       struct blobmsg_list data_blob;
 };
 
 void service_validate_add(struct service *s, struct blob_attr *attr);