X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=blobdiff_plain;f=system-dummy.c;h=7d651a50e9be389a3595cf8ce051609ec0ce8d00;hp=00a9b2ae51d330aab76bb19a361c59889f6bea15;hb=10741b4974b85c825036eb0717ddc7112f96f5fb;hpb=43d8e8e91a67ba6ecb87621c51614d6325fde7ae diff --git a/system-dummy.c b/system-dummy.c index 00a9b2a..7d651a5 100644 --- a/system-dummy.c +++ b/system-dummy.c @@ -1,3 +1,4 @@ +#include #include #include @@ -66,7 +67,6 @@ int system_if_down(struct device *dev) void system_if_clear_state(struct device *dev) { - return 0; } int system_if_check(struct device *dev) @@ -79,6 +79,17 @@ int system_if_check(struct device *dev) return 0; } +struct device * +system_if_get_parent(struct device *dev) +{ + return NULL; +} + +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; @@ -166,3 +177,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; +}