X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=blobdiff_plain;f=system-dummy.c;h=cae421d1c117fc0978e70604f4b0aadfc711bbd8;hp=4c9a8fcb97daddec3ef2599da5b866d8bca28d47;hb=a17e907f55390ae39ee8e64fd96d06abc193a7e5;hpb=34a1a4bad31ba6f138cd6a98249c774ff66285d1 diff --git a/system-dummy.c b/system-dummy.c index 4c9a8fc..cae421d 100644 --- a/system-dummy.c +++ b/system-dummy.c @@ -1,3 +1,16 @@ +/* + * netifd - network interface daemon + * Copyright (C) 2012 Felix Fietkau + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 + * as published by the Free Software Foundation + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + */ #include #include #include @@ -79,6 +92,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; @@ -134,8 +169,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; @@ -160,13 +197,17 @@ 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; @@ -176,3 +217,13 @@ time_t system_get_rtime(void) 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; +}