diff options
Diffstat (limited to 'include/linux/ieee80211.h')
-rw-r--r-- | include/linux/ieee80211.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/include/linux/ieee80211.h b/include/linux/ieee80211.h index 7f2354534242..cd681681d211 100644 --- a/include/linux/ieee80211.h +++ b/include/linux/ieee80211.h | |||
@@ -1291,6 +1291,31 @@ enum ieee80211_key_len { | |||
1291 | WLAN_KEY_LEN_AES_CMAC = 16, | 1291 | WLAN_KEY_LEN_AES_CMAC = 16, |
1292 | }; | 1292 | }; |
1293 | 1293 | ||
1294 | /** | ||
1295 | * enum - mesh path selection protocol identifier | ||
1296 | * | ||
1297 | * @IEEE80211_PATH_PROTOCOL_HWMP: the default path selection protocol | ||
1298 | * @IEEE80211_PATH_PROTOCOL_VENDOR: a vendor specific protocol that will | ||
1299 | * be specified in a vendor specific information element | ||
1300 | */ | ||
1301 | enum { | ||
1302 | IEEE80211_PATH_PROTOCOL_HWMP = 0, | ||
1303 | IEEE80211_PATH_PROTOCOL_VENDOR = 255, | ||
1304 | }; | ||
1305 | |||
1306 | /** | ||
1307 | * enum - mesh path selection metric identifier | ||
1308 | * | ||
1309 | * @IEEE80211_PATH_METRIC_AIRTIME: the default path selection metric | ||
1310 | * @IEEE80211_PATH_METRIC_VENDOR: a vendor specific metric that will be | ||
1311 | * specified in a vendor specific information element | ||
1312 | */ | ||
1313 | enum { | ||
1314 | IEEE80211_PATH_METRIC_AIRTIME = 0, | ||
1315 | IEEE80211_PATH_METRIC_VENDOR = 255, | ||
1316 | }; | ||
1317 | |||
1318 | |||
1294 | /* | 1319 | /* |
1295 | * IEEE 802.11-2007 7.3.2.9 Country information element | 1320 | * IEEE 802.11-2007 7.3.2.9 Country information element |
1296 | * | 1321 | * |