X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=blobdiff_plain;f=handler.h;h=ca74aa64526bb3ab3ab0c488f1fdf3421b265c7a;hp=de403e1fae8f0552ccd1b7eb3d47708c98f7bacf;hb=9cd56141e80ea7d19350584d382d303f884d0aa5;hpb=f88b0173d22e7f86ad8441c9a5bc76cee77f721a diff --git a/handler.h b/handler.h index de403e1..ca74aa6 100644 --- a/handler.h +++ b/handler.h @@ -15,8 +15,9 @@ #define __NETIFD_HANDLER_H #include +#include "config.h" -typedef void (*script_dump_cb)(const char *name, json_object *obj); +typedef void (*script_dump_cb)(const char *script, const char *name, json_object *obj); static inline json_object * json_check_type(json_object *obj, json_type type) @@ -30,6 +31,12 @@ json_check_type(json_object *obj, json_type type) return obj; } +static inline json_object * +json_get_field(json_object *obj, const char *name, json_type type) +{ + return json_check_type(json_object_object_get(obj, name), type); +} + int netifd_open_subdir(const char *name); void netifd_init_script_handlers(int dir_fd, script_dump_cb cb); char *netifd_handler_parse_config(struct uci_blob_param_list *config, json_object *obj);