add -Wmissing-declarations to cflags
[project/netifd.git] / system-dummy.c
index 31bfac8..d518d6f 100644 (file)
@@ -1,3 +1,4 @@
+#include <sys/time.h>
 #include <stdio.h>
 #include <string.h>
 
@@ -78,6 +79,11 @@ int system_if_check(struct device *dev)
        return 0;
 }
 
+int system_if_dump_stats(struct device *dev, struct blob_buf *b)
+{
+       return 0;
+}
+
 int system_add_address(struct device *dev, struct device_addr *addr)
 {
        uint8_t *a = (uint8_t *) &addr->addr.in;
@@ -165,3 +171,18 @@ int system_del_route(struct device *dev, struct device_route *route)
        D(SYSTEM, "route del %s%s%s\n", addr, gw, devstr);
        return 0;
 }
+
+int system_flush_routes(void)
+{
+       return 0;
+}
+
+time_t system_get_rtime(void)
+{
+       struct timeval tv;
+
+       if (gettimeofday(&tv, NULL) == 0)
+               return tv.tv_sec;
+
+       return 0;
+}