X-Git-Url: http://git.openwrt.org/?p=project%2Fnetifd.git;a=blobdiff_plain;f=device.h;h=c669beb966f31f3d62864a4dc71f5784b00cdb90;hp=d28ec70df58e83a12d621c9b417505f8b922414d;hb=83d3a901d3178a8840092b6e4f7f829b89da4ba0;hpb=f56a7fbaa6f155c654e7d01b5c4c0594f21239d6 diff --git a/device.h b/device.h index d28ec70..c669beb 100644 --- a/device.h +++ b/device.h @@ -19,6 +19,7 @@ #include struct device; +struct device_type; struct device_user; struct device_hotplug_ops; struct interface; @@ -44,6 +45,7 @@ enum { DEV_ATTR_DADTRANSMITS, DEV_ATTR_MULTICAST_TO_UNICAST, DEV_ATTR_MULTICAST_ROUTER, + DEV_ATTR_MULTICAST_FAST_LEAVE, DEV_ATTR_MULTICAST, DEV_ATTR_LEARNING, DEV_ATTR_UNICAST_FLOOD, @@ -62,6 +64,9 @@ struct device_type { struct list_head list; const char *name; + bool bridge_capability; + const char *name_prefix; + const struct uci_blob_param_list *config_params; struct device *(*create)(const char *name, struct device_type *devtype, @@ -95,6 +100,7 @@ enum { DEV_OPT_LEARNING = (1 << 17), DEV_OPT_UNICAST_FLOOD = (1 << 18), DEV_OPT_NEIGHGCSTALETIME = (1 << 19), + DEV_OPT_MULTICAST_FAST_LEAVE = (1 << 20), }; /* events broadcasted to all users of a device */ @@ -157,6 +163,7 @@ struct device_settings { unsigned int dadtransmits; bool multicast_to_unicast; unsigned int multicast_router; + bool multicast_fast_leave; bool multicast; bool learning; bool unicast_flood; @@ -227,6 +234,8 @@ extern struct device_type vlandev_device_type; void device_lock(void); void device_unlock(void); +int device_type_add(struct device_type *devtype); +struct device_type *device_type_get(const char *tname); struct device *device_create(const char *name, struct device_type *type, struct blob_attr *config); void device_init_settings(struct device *dev, struct blob_attr **tb);