prevent deletion devices that are part of the current configuration
[project/netifd.git] / device.h
index 8ecb9ef..176d1ef 100644 (file)
--- a/device.h
+++ b/device.h
@@ -32,6 +32,7 @@ struct device_type {
        const struct config_param_list *config_params;
 
        struct device *(*create)(struct blob_attr *attr);
+       void (*config_init)(struct device *);
        enum dev_change_type (*reload)(struct device *, struct blob_attr *);
        void (*dump_status)(struct device *, struct blob_buf *buf);
        int (*check_state)(struct device *);
@@ -58,9 +59,13 @@ struct device {
        int ifindex;
 
        struct blob_attr *config;
+       bool config_pending;
        bool present;
        int active;
 
+       bool current_config;
+       bool default_config;
+
        /* set interface up or down */
        device_state_cb set_state;
 
@@ -111,6 +116,10 @@ extern const struct device_type bridge_device_type;
 struct device *device_create(const char *name, const struct device_type *type,
                             struct blob_attr *config);
 void device_init_settings(struct device *dev, struct blob_attr **tb);
+void device_init_pending(void);
+
+void device_reset_config(void);
+void device_reset_old(void);
 
 void device_init_virtual(struct device *dev, const struct device_type *type, const char *name);
 int device_init(struct device *iface, const struct device_type *type, const char *ifname);