| 638 | } |
| 639 | |
| 640 | static void |
| 641 | set80211stationname(const char *val, int d, int s, const struct afswtch *rafp) |
| 642 | { |
| 643 | int len; |
| 644 | u_int8_t data[33]; |
| 645 | |
| 646 | bzero(data, sizeof(data)); |
| 647 | len = sizeof(data); |
| 648 | get_string(val, NULL, data, &len); |
| 649 | |
| 650 | set80211(s, IEEE80211_IOC_STATIONNAME, 0, len, data); |
| 651 | } |
| 652 | |
| 653 | /* |
| 654 | * Parse a channel specification for attributes/flags. |
nothing calls this directly
no test coverage detected