X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=blobdiff_plain;f=handler.h;h=e3e2af5e86899a5a8f9be95c7719f565e44e2c22;hp=de403e1fae8f0552ccd1b7eb3d47708c98f7bacf;hb=HEAD;hpb=f88b0173d22e7f86ad8441c9a5bc76cee77f721a diff --git a/handler.h b/handler.h index de403e1..e3e2af5 100644 --- a/handler.h +++ b/handler.h @@ -15,8 +15,10 @@ #define __NETIFD_HANDLER_H #include +#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 +32,13 @@ 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_object_object_get_ex(obj, name, &obj) ? + json_check_type(obj, type) : NULL; +} + 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);