IPv6: Use source-routing to allow multi-wan
[project/netifd.git] / interface-ip.h
index 607999e..cd6ec84 100644 (file)
@@ -39,6 +39,9 @@ enum device_addr_flags {
 
        /* route resides in different table */
        DEVROUTE_TABLE          = (1 << 7),
+
+       /* route resides in default source-route table */
+       DEVROUTE_SRCTABLE       = (1 << 8),
 };
 
 union if_addr {
@@ -141,5 +144,6 @@ struct device_prefix* interface_ip_add_device_prefix(struct interface *iface,
                struct in6_addr *excl_addr, uint8_t excl_length);
 void interface_ip_set_ula_prefix(const char *prefix);
 void interface_refresh_assignments(bool hint);
+int interface_ip_resolve_v6_rtable(int ifindex);
 
 #endif