summaryrefslogtreecommitdiffstats
path: root/service.h
blob: 527e511ac1bcc8b930552de7e4f270554a14dec5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef __PROCD_SERVICE_H
#define __PROCD_SERVICE_H

#include <libubox/avl.h>
#include <libubox/vlist.h>

extern struct avl_tree services;

struct service {
	struct avl_node avl;
	const char *name;

	struct blob_attr *config;
	struct vlist_tree instances;
};

#endif