proto: move the dns search option handling to the core
[project/netifd.git] / system-dummy.c
index e6187f3..f2e3aed 100644 (file)
@@ -79,7 +79,24 @@ int system_if_check(struct device *dev)
        return 0;
 }
 
-int system_if_dump_stats(struct device *dev, struct blob_buf *b)
+struct device *
+system_if_get_parent(struct device *dev)
+{
+       if (!strcmp(dev->ifname, "eth0"))
+               return device_get("eth1", true);
+
+       return NULL;
+}
+
+int
+system_if_dump_info(struct device *dev, struct blob_buf *b)
+{
+       blobmsg_add_u8(b, "link", dev->present);
+       return 0;
+}
+
+int
+system_if_dump_stats(struct device *dev, struct blob_buf *b)
 {
        return 0;
 }
@@ -172,6 +189,11 @@ int system_del_route(struct device *dev, struct device_route *route)
        return 0;
 }
 
+int system_flush_routes(void)
+{
+       return 0;
+}
+
 time_t system_get_rtime(void)
 {
        struct timeval tv;