| 215 | static int gotvhtconf = 0; |
| 216 | |
| 217 | static void |
| 218 | getvhtconf(int s) |
| 219 | { |
| 220 | if (gotvhtconf) |
| 221 | return; |
| 222 | if (get80211val(s, IEEE80211_IOC_VHTCONF, &vhtconf) < 0) |
| 223 | warn("unable to get VHT configuration information"); |
| 224 | gotvhtconf = 1; |
| 225 | } |
| 226 | |
| 227 | /* |
| 228 | * Collect channel info from the kernel. We use this (mostly) |
no test coverage detected