X-Git-Url: http://git.ozlabs.org/?a=blobdiff_plain;f=discover%2Fevent.c;h=242ae81bf1a756306c97db74ee0e69d62ae4d487;hb=8f0e069fc43ed6f6a230329839f970415147d1aa;hp=0ccd3910e18396e989fe58ce8e8e423be6716373;hpb=974853d86dd6328ec2aaf6b9ff5b56398942a902;p=petitboot diff --git a/discover/event.c b/discover/event.c index 0ccd391..242ae81 100644 --- a/discover/event.c +++ b/discover/event.c @@ -2,7 +2,6 @@ #include "config.h" #endif -#define _GNU_SOURCE #include #include @@ -48,8 +47,16 @@ static int event_parse_ad_header(char *buf, int len, enum event_action *action, *action = EVENT_ACTION_ADD; else if (streq(buf, "remove")) *action = EVENT_ACTION_REMOVE; + else if (streq(buf, "url")) + *action = EVENT_ACTION_URL; else if (streq(buf, "conf")) *action = EVENT_ACTION_CONF; + else if (streq(buf, "dhcp")) + *action = EVENT_ACTION_DHCP; + else if (streq(buf, "boot")) + *action = EVENT_ACTION_BOOT; + else if (streq(buf, "sync")) + *action = EVENT_ACTION_SYNC; else { pb_log("%s: unknown action: %s\n", __func__, buf); return -1;