X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=blobdiff_plain;f=device.h;h=659bcf1f41c4a6b542759491001edcc33f320565;hp=907b9c660684327feb7e39b18f9915795be50826;hb=39d99df0854b33e441b08aa18aa80817a50ef22c;hpb=f6b38cb7c9ad0e7feba7cb7d2a1678af5e032000 diff --git a/device.h b/device.h index 907b9c6..659bcf1 100644 --- a/device.h +++ b/device.h @@ -32,8 +32,10 @@ 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); + void (*dump_info)(struct device *, struct blob_buf *buf); + void (*dump_stats)(struct device *, struct blob_buf *buf); int (*check_state)(struct device *); void (*free)(struct device *); }; @@ -58,9 +60,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 +117,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 +132,8 @@ 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); +void device_dump_status(struct blob_buf *b, struct device *dev); static inline void device_free(struct device *dev)