X-Git-Url: http://git.archive.openwrt.org/?p=project%2Ffirewall3.git;a=blobdiff_plain;f=utils.h;h=c3dc974bfea513a15003d9e0b5d81be7c7166f40;hp=f157daf2b77b63f3729abff88759fda5bc505e0a;hb=a4b710143626b399783865a3ea31bdb25aa1bac9;hpb=275a37dbf280bd471ebb2c673267c49a81071bbb diff --git a/utils.h b/utils.h index f157daf..c3dc974 100644 --- a/utils.h +++ b/utils.h @@ -35,6 +35,8 @@ #define FW3_STATEFILE "/var/run/fw3.state" #define FW3_LOCKFILE "/var/run/fw3.lock" +extern bool fw3_pr_debug; + void warn_elem(struct uci_element *e, const char *format, ...); void warn(const char *format, ...); void error(const char *format, ...); @@ -50,21 +52,12 @@ void info(const char *format, ...); p = list_empty(h) ? list_first_entry(h, typeof(*p), list) \ : list_entry(p->list.next, typeof(*p), list)) -static inline void -fw3_free_list(struct list_head *list) -{ - struct list_head *cur, *tmp; - - list_for_each_safe(cur, tmp, list) - { - list_del(cur); - free(cur); - } -} - #define fw3_is_family(p, f) \ (!p || (p)->family == FW3_FAMILY_ANY || (p)->family == f) +#define fw3_no_family(flags) \ + (!(flags & ((1 << FW3_FAMILY_V4) | (1 << FW3_FAMILY_V6)))) + const char * fw3_find_command(const char *cmd); bool fw3_stdout_pipe(void); @@ -92,4 +85,6 @@ void fw3_write_statefile(void *state); void fw3_set_running(void *object, struct list_head *dest); +void fw3_free_object(void *obj, const void *opts); + #endif