| 201 | static int gothtconf = 0; |
| 202 | |
| 203 | static void |
| 204 | gethtconf(int s) |
| 205 | { |
| 206 | if (gothtconf) |
| 207 | return; |
| 208 | if (get80211val(s, IEEE80211_IOC_HTCONF, &htconf) < 0) |
| 209 | warn("unable to get HT configuration information"); |
| 210 | gothtconf = 1; |
| 211 | } |
| 212 | |
| 213 | /* VHT */ |
| 214 | static int vhtconf = 0; |
no test coverage detected