X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=blobdiff_plain;f=system-dummy.c;h=b3aefbe41f2e5682ba9d12f985e38e75faeaf696;hp=31bfac80534b2e1c07fae0478cb6cc7c438ab1da;hb=9b40d469c858d9ce4cacfa0aca37ba2ac69d2f96;hpb=49a8c2cecb4e1a54b986d9768c8f1f912365ac8b diff --git a/system-dummy.c b/system-dummy.c index 31bfac8..b3aefbe 100644 --- a/system-dummy.c +++ b/system-dummy.c @@ -1,3 +1,4 @@ +#include #include #include @@ -78,6 +79,28 @@ int system_if_check(struct device *dev) return 0; } +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; +} + int system_add_address(struct device *dev, struct device_addr *addr) { uint8_t *a = (uint8_t *) &addr->addr.in; @@ -133,8 +156,10 @@ int system_add_route(struct device *dev, struct device_route *route) sprintf(gw, " gw %d.%d.%d.%d", a2[0], a2[1], a2[2], a2[3]); - if (route->flags & DEVADDR_DEVICE) - sprintf(devstr, " dev %s", dev->ifname); + sprintf(devstr, " dev %s", dev->ifname); + + if (route->metric > 0) + sprintf(devstr, " metric %d", route->metric); D(SYSTEM, "route add %s%s%s\n", addr, gw, devstr); return 0; @@ -159,9 +184,33 @@ int system_del_route(struct device *dev, struct device_route *route) sprintf(gw, " gw %d.%d.%d.%d", a2[0], a2[1], a2[2], a2[3]); - if (route->flags & DEVADDR_DEVICE) - sprintf(devstr, " dev %s", dev->ifname); + sprintf(devstr, " dev %s", dev->ifname); 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; +} + +int system_del_ip_tunnel(const char *name) +{ + return 0; +} + +int system_add_ip_tunnel(const char *name, struct blob_attr *attr) +{ + return 0; +}