summaryrefslogtreecommitdiffstats
path: root/discover/event.h
diff options
context:
space:
mode:
Diffstat (limited to 'discover/event.h')
-rw-r--r--discover/event.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/discover/event.h b/discover/event.h
new file mode 100644
index 0000000..20585f2
--- /dev/null
+++ b/discover/event.h
@@ -0,0 +1,29 @@
+#ifndef _PB_EVENT_H
+#define _PB_EVENT_H
+
+enum event_type {
+ EVENT_TYPE_UDEV = 10,
+ EVENT_TYPE_USER,
+};
+
+enum event_action {
+ EVENT_ACTION_ADD = 20,
+ EVENT_ACTION_REMOVE,
+};
+
+struct event {
+ enum event_type type;
+ enum event_action action;
+ char *device;
+
+ struct param {
+ char *name;
+ char *value;
+ } *params;
+ int n_params;
+};
+
+int event_parse_ad_message(struct event *event, char *buf, int len);
+const char *event_get_param(const struct event *event, const char *name);
+
+#endif /* _PB_EVENT_H */
OpenPOWER on IntegriCloud