Search Linux Wireless

Re: Multiple BSSID problem with hostapd

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



After investigating source code following function caused my problem:

static int i802_bss_add(void *priv, const char *ifname, const u8 *bssid)
{
        int ifidx;

        /*
         * The kernel supports that when the low-level driver does,
         * but we currently don't because we need per-BSS data that
         * currently we can't handle easily.
         */
        return -1;

        ifidx = nl80211_create_iface(priv, ifname, NL80211_IFTYPE_AP,
bssid);
        if (ifidx < 0)
                return -1;
        if (hostapd_set_iface_flags(priv, ifname, 1)) {
                nl80211_remove_iface(priv, ifidx);
                return -1;
        }
        return 0;
}

Obviously hostapd does not support multiple SSIDs because that function
returns always an error.

It would be nice to mention that in documentation...

Christian

--
To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html

[Index of Archives]     [Linux Host AP]     [ATH6KL]     [Linux Bluetooth]     [Linux Netdev]     [Kernel Newbies]     [Linux Kernel]     [IDE]     [Security]     [Git]     [Netfilter]     [Bugtraq]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux ATA RAID]     [Samba]     [Device Mapper]
  Powered by Linux