cfg80211 driver API notes#
Notes on this page are mostly for FullMAC devices, mac80211 has its own API notes.
Access Point mode#
Support for AP mode requires some control over management frames that hardware sends. This may vary between devices depending on the FullMAC implementation.
Most FullMAC drivers will need to implement following callbacks:
start_ap
- to configure hardware to use requested channel and send beacons with provided datastop_ap
- to stop AP modedel_station
- to allow disconnecting client If the hardware is capable of sending/receiving any management frames, you may also need to implementmgmt_tx
andmgmt_frame_register
.