X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=blobdiff_plain;f=system-dummy.c;h=76c6ffa7d032d8bbbf37f05bd51ee633c55cbca3;hp=deb53ff6642c354146b3e707274b3fd262acae55;hb=cc8c69f2533e3c85e3631f1371a4207c2d5becce;hpb=52c919d0d38f3b788155de06b929d4e3449e1a72 diff --git a/system-dummy.c b/system-dummy.c index deb53ff..76c6ffa 100644 --- a/system-dummy.c +++ b/system-dummy.c @@ -90,21 +90,20 @@ void system_if_clear_state(struct device *dev) int system_if_check(struct device *dev) { dev->ifindex = 0; + device_set_present(dev, true); + device_set_link(dev, true); - if (!strcmp(dev->ifname, "eth0")) { - device_set_present(dev, true); - device_set_link(dev, true); - } + return 0; +} +int system_if_resolve(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; } @@ -193,12 +192,29 @@ int system_flush_routes(void) return 0; } +bool system_resolve_rt_type(const char *type, unsigned int *id) +{ + *id = 0; + return true; +} + bool system_resolve_rt_table(const char *name, unsigned int *id) { *id = 0; return true; } +bool system_is_default_rt_table(unsigned int id) +{ + return true; +} + +bool system_resolve_rpfilter(const char *filter, unsigned int *id) +{ + *id = 0; + return true; +} + int system_add_iprule(struct iprule *rule) { return 0; @@ -230,7 +246,7 @@ time_t system_get_rtime(void) return 0; } -int system_del_ip_tunnel(const char *name) +int system_del_ip_tunnel(const char *name, struct blob_attr *attr) { return 0; } @@ -254,3 +270,13 @@ int system_macvlan_del(struct device *macvlan) { return 0; } + +int system_vlandev_add(struct device *vlandev, struct device *dev, struct vlandev_config *cfg) +{ + return 0; +} + +int system_vlandev_del(struct device *vlandev) +{ + return 0; +}