bridge: add support for configuring extra vlans for the bridge itself
[project/netifd.git] / handler.h
index d4b03344a41d820500b85398c2d0ea76c49b217a..70644093eab150d572b44390e2da887653a93d8a 100644 (file)
--- a/handler.h
+++ b/handler.h
 #define __NETIFD_HANDLER_H
 
 #include <libubox/blobmsg_json.h>
+#include <json-c/json.h>
+#include "config.h"
 
 typedef void (*script_dump_cb)(const char *script, const char *name, json_object *obj);
+typedef void (*create_extdev_handler_cb)(const char *cfg_file, const char *name,
+                                        const char *ubus_name, bool bridge,
+                                        const char *br_prefix, json_object *config_obj,
+                                        json_object *info_obj, json_object *stats_obj);
 
 static inline json_object *
 json_check_type(json_object *obj, json_type type)
@@ -33,11 +39,13 @@ json_check_type(json_object *obj, json_type type)
 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);
+       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);
+void netifd_init_extdev_handlers(int dir_fd, create_extdev_handler_cb cb);
 char *netifd_handler_parse_config(struct uci_blob_param_list *config, json_object *obj);
 
 #endif