add support for calls to a hotplug script on interface state changes
[project/netifd.git] / utils.h
diff --git a/utils.h b/utils.h
index d71a8f7..85d7dc6 100644 (file)
--- a/utils.h
+++ b/utils.h
@@ -4,16 +4,6 @@
 #include <libubox/list.h>
 #include <libubox/avl.h>
 
-#ifdef DEBUG
-#define DPRINTF(format, ...) fprintf(stderr, "%s(%d): " format, __func__, __LINE__, ## __VA_ARGS__)
-#else
-#define DPRINTF(format, ...) no_debug(format, ## __VA_ARGS__)
-#endif
-
-static inline void no_debug(const char *fmt, ...)
-{
-}
-
 #define __init __attribute__((constructor))
 
 struct vlist_tree;
@@ -29,6 +19,7 @@ struct vlist_tree {
        vlist_update_cb update;
        int key_offset;
        bool keep_old;
+       bool no_delete;
 
        int version;
 };