mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
Change order in wpa_driver_bsd_ops to match upstream code. Add description
while here.
This commit is contained in:
parent
85b9231041
commit
fd7e85ad14
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=216539
1 changed files with 7 additions and 6 deletions
|
@ -789,23 +789,24 @@ bsd_deinit(void *priv)
|
|||
|
||||
const struct wpa_driver_ops wpa_driver_bsd_ops = {
|
||||
.name = "bsd",
|
||||
.desc = "BSD 802.11 support",
|
||||
.hapd_init = bsd_init,
|
||||
.hapd_deinit = bsd_deinit,
|
||||
.set_ieee8021x = bsd_set_ieee8021x,
|
||||
.set_privacy = bsd_set_privacy,
|
||||
.set_key = bsd_set_key,
|
||||
.get_seqnum = bsd_get_seqnum,
|
||||
.flush = bsd_flush,
|
||||
.set_generic_elem = bsd_set_opt_ie,
|
||||
.sta_set_flags = bsd_set_sta_authorized,
|
||||
.read_sta_data = bsd_read_sta_driver_data,
|
||||
.hapd_send_eapol = bsd_send_eapol,
|
||||
.sta_clear_stats = bsd_sta_clear_stats,
|
||||
.sta_disassoc = bsd_sta_disassoc,
|
||||
.sta_deauth = bsd_sta_deauth,
|
||||
.set_key = bsd_set_key,
|
||||
.set_ieee8021x = bsd_set_ieee8021x,
|
||||
.hapd_set_ssid = bsd_set_ssid,
|
||||
.hapd_get_ssid = bsd_get_ssid,
|
||||
.hapd_send_eapol = bsd_send_eapol,
|
||||
.sta_set_flags = bsd_set_sta_authorized,
|
||||
.set_generic_elem = bsd_set_opt_ie,
|
||||
.set_countermeasures = bsd_set_countermeasures,
|
||||
.sta_clear_stats = bsd_sta_clear_stats,
|
||||
.commit = bsd_commit,
|
||||
#ifdef CONFIG_DRIVER_RADIUS_ACL_NOT_YET
|
||||
.set_radius_acl_auth = bsd_set_radius_acl_auth,
|
||||
|
|
Loading…
Reference in a new issue