bridge: make hotplug-added vlans default to tagged
[project/netifd.git] / wireless.h
index 9a2d512f03de595d9a01ecbc814049b217dbc3e9..e9cfc925e589a3a76b8b5d7b67ddda99b48471fe 100644 (file)
@@ -88,8 +88,11 @@ struct wireless_interface {
 
        const char *ifname;
        struct blob_attr *network;
+       struct blob_attr *network_vlan;
+       bool proxyarp;
        bool isolate;
        bool ap_mode;
+       int multicast_to_unicast;
 };
 
 struct wireless_vlan {
@@ -105,6 +108,8 @@ struct wireless_vlan {
 
        const char *ifname;
        struct blob_attr *network;
+       struct blob_attr *network_vlan;
+       int multicast_to_unicast;
        bool isolate;
 };
 
@@ -144,5 +149,6 @@ int wireless_device_notify(struct wireless_device *wdev, struct blob_attr *data,
 
 void wireless_start_pending(void);
 void wireless_init(void);
+void wireless_device_hotplug_event(const char *name, bool add);
 
 #endif