|
@@ -847,41 +847,17 @@ int ap_sta_bind_vlan(struct hostapd_data *hapd, struct sta_info *sta)
|
|
|
}
|
|
|
|
|
|
iface = vlan->ifname;
|
|
|
- if (vlan_setup_encryption_dyn(hapd, iface) != 0) {
|
|
|
- hostapd_logger(hapd, sta->addr,
|
|
|
- HOSTAPD_MODULE_IEEE80211,
|
|
|
- HOSTAPD_LEVEL_DEBUG, "could not "
|
|
|
- "configure encryption for dynamic VLAN "
|
|
|
- "interface for vlan_id=%d",
|
|
|
- sta->vlan_id);
|
|
|
- }
|
|
|
-
|
|
|
hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
|
|
|
HOSTAPD_LEVEL_DEBUG, "added new dynamic VLAN "
|
|
|
"interface '%s'", iface);
|
|
|
- } else if (vlan && vlan->vlan_id == sta->vlan_id) {
|
|
|
- if (vlan->dynamic_vlan > 0) {
|
|
|
- vlan->dynamic_vlan++;
|
|
|
- hostapd_logger(hapd, sta->addr,
|
|
|
- HOSTAPD_MODULE_IEEE80211,
|
|
|
- HOSTAPD_LEVEL_DEBUG, "updated existing "
|
|
|
- "dynamic VLAN interface '%s'", iface);
|
|
|
- }
|
|
|
-
|
|
|
- /*
|
|
|
- * Update encryption configuration for statically generated
|
|
|
- * VLAN interface. This is only used for static WEP
|
|
|
- * configuration for the case where hostapd did not yet know
|
|
|
- * which keys are to be used when the interface was added.
|
|
|
- */
|
|
|
- if (vlan_setup_encryption_dyn(hapd, iface) != 0) {
|
|
|
- hostapd_logger(hapd, sta->addr,
|
|
|
- HOSTAPD_MODULE_IEEE80211,
|
|
|
- HOSTAPD_LEVEL_DEBUG, "could not "
|
|
|
- "configure encryption for VLAN "
|
|
|
- "interface for vlan_id=%d",
|
|
|
- sta->vlan_id);
|
|
|
- }
|
|
|
+ } else if (vlan && vlan->vlan_id == sta->vlan_id &&
|
|
|
+ vlan->dynamic_vlan > 0) {
|
|
|
+ vlan->dynamic_vlan++;
|
|
|
+ hostapd_logger(hapd, sta->addr,
|
|
|
+ HOSTAPD_MODULE_IEEE80211,
|
|
|
+ HOSTAPD_LEVEL_DEBUG,
|
|
|
+ "updated existing dynamic VLAN interface '%s'",
|
|
|
+ iface);
|
|
|
}
|
|
|
|
|
|
/* ref counters have been increased, so mark the station */
|