Add source-restricted routes
[project/netifd.git] / interface.h
index 6724bb9..8c69958 100644 (file)
@@ -23,6 +23,7 @@ struct interface_proto_state;
 enum interface_event {
        IFEV_DOWN,
        IFEV_UP,
+       IFEV_UPDATE,
        IFEV_FREE,
        IFEV_RELOAD,
 };
@@ -62,6 +63,7 @@ struct interface_ip_settings {
 
        struct vlist_tree addr;
        struct vlist_tree route;
+       struct vlist_tree prefix;
 
        struct vlist_simple_tree dns_servers;
        struct vlist_simple_tree dns_search;
@@ -72,6 +74,11 @@ struct interface_data {
        struct blob_attr data[];
 };
 
+struct interface_assignment_class {
+       struct list_head head;
+       char name[];
+};
+
 /*
  * interface configuration
  */
@@ -86,6 +93,8 @@ struct interface {
        bool available;
        bool autostart;
        bool config_autostart;
+       bool device_config;
+       bool dynamic;
 
        time_t start_time;
        enum interface_state state;
@@ -113,6 +122,13 @@ struct interface {
        struct vlist_tree host_routes;
 
        int metric;
+       unsigned int ip4table;
+       unsigned int ip6table;
+
+       /* IPv6 assignment parameters */
+       uint8_t assignment_length;
+       int32_t assignment_hint;
+       struct list_head assignment_classes;
 
        /* errors/warnings while trying to bring up the interface */
        struct list_head errors;
@@ -124,11 +140,12 @@ struct interface {
        struct ubus_object ubus;
 };
 
+
 extern struct vlist_tree interfaces;
-extern const struct config_param_list interface_attr_list;
+extern const struct uci_blob_param_list interface_attr_list;
 
 void interface_init(struct interface *iface, const char *name,
-                   struct blob_attr *config);
+                   struct blob_attr *config, bool dynamic);
 
 void interface_add(struct interface *iface, struct blob_attr *config);
 bool interface_add_alias(struct interface *iface, struct blob_attr *config);