]> git.ozlabs.org Git - petitboot/blobdiff - discover/event.c
discover/status: Use full URL in parse status message
[petitboot] / discover / event.c
index d4bb2c5dbcaeb9de78ee5caf50b0bc61bd80a0e1..1be19eb2a052bd79333c379cfa2d9d3fa5a0248e 100644 (file)
@@ -2,7 +2,6 @@
 #include "config.h"
 #endif
 
-#define _GNU_SOURCE
 #include <string.h>
 
 #include <log/log.h>
@@ -48,10 +47,14 @@ 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, "conf"))
-               *action = EVENT_ACTION_CONF;
+       else if (streq(buf, "url"))
+               *action = EVENT_ACTION_URL;
        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;