X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=blobdiff_plain;f=device.h;h=176d1ef7fdc806c00160ef33bd82cada1b1c68b4;hp=907b9c660684327feb7e39b18f9915795be50826;hb=33f7932e34d10b5429ea05332ef1e8421ef90916;hpb=f6b38cb7c9ad0e7feba7cb7d2a1678af5e032000 diff --git a/device.h b/device.h index 907b9c6..176d1ef 100644 --- 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); @@ -122,7 +131,7 @@ void device_remove_user(struct device_user *dep); void device_set_present(struct device *dev, bool state); int device_claim(struct device_user *dep); void device_release(struct device_user *dep); -int check_device_state(struct device *dev); +int device_check_state(struct device *dev); static inline void device_free(struct device *dev)