Interworking: Add support for configuring Roaming Consortium List

This commit is contained in:
Jouni Malinen 2011-10-17 23:55:50 +03:00 committed by Jouni Malinen
parent c7c178e15e
commit 4b2a77aba2
9 changed files with 112 additions and 1 deletions

View file

@ -142,6 +142,13 @@ struct hostapd_wmm_ac_params {
};
#define MAX_ROAMING_CONSORTIUM_LEN 15
struct hostapd_roaming_consortium {
u8 len;
u8 oi[MAX_ROAMING_CONSORTIUM_LEN];
};
/**
* struct hostapd_bss_config - Per-BSS configuration
*/
@ -346,6 +353,10 @@ struct hostapd_bss_config {
u8 venue_group;
u8 venue_type;
u8 hessid[ETH_ALEN];
/* IEEE 802.11u - Roaming Consortium list */
unsigned int roaming_consortium_count;
struct hostapd_roaming_consortium *roaming_consortium;
};