add support for multiple config_param_list::next pointers
[project/netifd.git] / config.c
index ab736e0..1e465c5 100644 (file)
--- a/config.c
+++ b/config.c
@@ -69,8 +69,8 @@ static void uci_array_to_blob(struct blob_buf *b, struct uci_option *o,
        free(str);
 }
 
-static void uci_to_blob(struct blob_buf *b, struct uci_section *s,
-                       const struct config_param_list *p)
+static void __uci_to_blob(struct blob_buf *b, struct uci_section *s,
+                         const struct config_param_list *p)
 {
        const struct blobmsg_policy *attr;
        struct uci_element *e;
@@ -107,6 +107,16 @@ static void uci_to_blob(struct blob_buf *b, struct uci_section *s,
        }
 }
 
+static void uci_to_blob(struct blob_buf *b, struct uci_section *s,
+                       const struct config_param_list *p)
+{
+       int i;
+
+       __uci_to_blob(b, s, p);
+       for (i = 0; i < p->n_next; i++)
+               uci_to_blob(b, s, p->next[i]);
+}
+
 static void
 config_parse_interface(struct uci_section *s)
 {
@@ -118,7 +128,7 @@ config_parse_interface(struct uci_section *s)
 }
 
 void
-config_device_inits(void)
+config_init_devices(void)
 {
        struct uci_element *e;
 
@@ -154,7 +164,7 @@ config_init_interfaces(const char *name)
        uci_network = p;
        config_init = true;
 
-       config_device_inits();
+       config_init_devices();
 
        uci_foreach_element(&p->sections, e) {
                struct uci_section *s = uci_to_section(e);