X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=blobdiff_plain;f=device.h;h=ac77cfb02e5c4402ab2d433fd935ac12acfe9c7b;hp=77ebe842410af9506217518f3ad747b7f61515d3;hb=7a51f23e7034157dee8e00910513d95e935eeab6;hpb=827145f01d849c663f18e356157fd71f1a7cc45d diff --git a/device.h b/device.h index 77ebe84..ac77cfb 100644 --- a/device.h +++ b/device.h @@ -42,6 +42,9 @@ enum { DEV_ATTR_RPS, DEV_ATTR_XPS, DEV_ATTR_DADTRANSMITS, + DEV_ATTR_MULTICAST_TO_UNICAST, + DEV_ATTR_MULTICAST_ROUTER, + DEV_ATTR_MULTICAST, __DEV_ATTR_MAX, }; @@ -56,8 +59,6 @@ struct device_type { struct list_head list; const char *name; - bool keep_link_status; - const struct uci_blob_param_list *config_params; struct device *(*create)(const char *name, struct blob_attr *attr); @@ -84,6 +85,9 @@ enum { DEV_OPT_XPS = (1 << 11), DEV_OPT_MTU6 = (1 << 12), DEV_OPT_DADTRANSMITS = (1 << 13), + DEV_OPT_MULTICAST_TO_UNICAST = (1 << 14), + DEV_OPT_MULTICAST_ROUTER = (1 << 15), + DEV_OPT_MULTICAST = (1 << 16), }; /* events broadcasted to all users of a device */ @@ -126,6 +130,7 @@ struct device_user { struct device_settings { unsigned int flags; + unsigned int valid_flags; unsigned int mtu; unsigned int mtu6; unsigned int txqueuelen; @@ -141,6 +146,9 @@ struct device_settings { bool rps; bool xps; unsigned int dadtransmits; + bool multicast_to_unicast; + unsigned int multicast_router; + bool multicast; }; /* @@ -176,6 +184,7 @@ struct device { bool iface_config; bool default_config; bool wireless; + bool wireless_ap; bool wireless_isolate; struct interface *config_iface;