X-Git-Url: http://git.archive.openwrt.org/?a=blobdiff_plain;f=system-dummy.c;h=e6187f3d0b326e3bed3794028924cf32364da5ff;hb=10c7565766962a876844c71dd3a230aefeaf193b;hp=9a646dcdb5fb85e5a6aea7ff651d2d20c5855577;hpb=6103b065ee1fa7c9e3766b981cd090928683a2a6;p=project%2Fnetifd.git diff --git a/system-dummy.c b/system-dummy.c index 9a646dc..e6187f3 100644 --- a/system-dummy.c +++ b/system-dummy.c @@ -1,3 +1,4 @@ +#include #include #include @@ -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,13 @@ int system_del_route(struct device *dev, struct device_route *route) D(SYSTEM, "route del %s%s%s\n", addr, gw, devstr); return 0; } + +time_t system_get_rtime(void) +{ + struct timeval tv; + + if (gettimeofday(&tv, NULL) == 0) + return tv.tv_sec; + + return 0; +}