X-Git-Url: http://git.openwrt.org/?a=blobdiff_plain;f=interface-ip.h;h=bbef62ceb305f5f82ba8c1ffa2591ba39a92b3bb;hb=e27e23f76437edc7871c03c8c92d69fbe52d30f5;hp=c0a3b92d9f1f2f922ede59c7ce75147364ace303;hpb=e5faaa6aa420a4d144cd13350de971b6d855b231;p=project%2Fnetifd.git diff --git a/interface-ip.h b/interface-ip.h index c0a3b92..bbef62c 100644 --- a/interface-ip.h +++ b/interface-ip.h @@ -81,48 +81,50 @@ struct device_prefix { char pclass[]; }; -struct device_addr { +struct device_route { struct vlist_node node; + struct interface *iface; + bool enabled; + bool keep; bool failed; - unsigned int policy_table; - /* ipv4 only */ - uint32_t broadcast; - uint32_t point_to_point; - - /* ipv6 only */ + union if_addr nexthop; + int mtu; + unsigned int type; time_t valid_until; - time_t preferred_until; - char *pclass; /* must be last */ enum device_addr_flags flags; + int metric; // there can be multiple routes to the same target + unsigned int table; unsigned int mask; + unsigned int sourcemask; union if_addr addr; + union if_addr source; }; -struct device_route { +struct device_addr { struct vlist_node node; - struct interface *iface; - bool enabled; - bool keep; bool failed; + unsigned int policy_table; - union if_addr nexthop; - int mtu; - unsigned int type; + struct device_route subnet; + + /* ipv4 only */ + uint32_t broadcast; + uint32_t point_to_point; + + /* ipv6 only */ time_t valid_until; + time_t preferred_until; + char *pclass; /* must be last */ enum device_addr_flags flags; - int metric; // there can be multiple routes to the same target - unsigned int table; unsigned int mask; - unsigned int sourcemask; union if_addr addr; - union if_addr source; }; struct device_source_table {