X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=blobdiff_plain;f=system-dummy.c;h=d518d6fb0af0bab47920286bf2b5c71d5ddadd79;hp=d1557f9011aacddfb1ec6a91e9898f82f360efd6;hb=986c4a1434cc61d2de560690ecc0d532a157d40a;hpb=64c271ed3bd50ce5ffbf69108d75bb79d279e8d9 diff --git a/system-dummy.c b/system-dummy.c index d1557f9..d518d6f 100644 --- a/system-dummy.c +++ b/system-dummy.c @@ -1,3 +1,4 @@ +#include #include #include @@ -16,7 +17,7 @@ int system_init(void) return 0; } -int system_bridge_addbr(struct device *bridge) +int system_bridge_addbr(struct device *bridge, struct bridge_config *cfg) { D(SYSTEM, "brctl addbr %s\n", bridge->ifname); return 0; @@ -64,6 +65,10 @@ int system_if_down(struct device *dev) return 0; } +void system_if_clear_state(struct device *dev) +{ +} + int system_if_check(struct device *dev) { dev->ifindex = 0; @@ -74,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; @@ -161,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; +}