X-Git-Url: http://git.ozlabs.org/?p=petitboot;a=blobdiff_plain;f=discover%2Fevent.h;h=1f6966c970ab54279b4d27747477dc1342b5a43d;hp=91575ccd0de02004b94ff032566841e7c528e1b3;hb=8f09986340e602a69398b2866a265ea3f16609c6;hpb=0fdc5cc3f296db134729fe58e074c20084b99459 diff --git a/discover/event.h b/discover/event.h index 91575cc..1f6966c 100644 --- a/discover/event.h +++ b/discover/event.h @@ -10,13 +10,18 @@ enum event_type { enum event_action { EVENT_ACTION_ADD = 20, EVENT_ACTION_REMOVE, + EVENT_ACTION_URL, + EVENT_ACTION_DHCP, + EVENT_ACTION_BOOT, + EVENT_ACTION_SYNC, + EVENT_ACTION_PLUGIN, EVENT_ACTION_MAX, }; struct event { enum event_type type; enum event_action action; - char *device; + const char *device; struct param { char *name; @@ -27,5 +32,6 @@ struct event { int event_parse_ad_message(struct event *event, char *buf, int len); const char *event_get_param(const struct event *event, const char *name); +void event_set_param(struct event *event, const char *name, const char *value); #endif /* _PB_EVENT_H */