| 624 | } |
| 625 | |
| 626 | static void |
| 627 | set80211meshid(const char *val, int d, int s, const struct afswtch *rafp) |
| 628 | { |
| 629 | int len; |
| 630 | u_int8_t data[IEEE80211_NWID_LEN]; |
| 631 | |
| 632 | memset(data, 0, sizeof(data)); |
| 633 | len = sizeof(data); |
| 634 | if (get_string(val, NULL, data, &len) == NULL) |
| 635 | exit(1); |
| 636 | |
| 637 | set80211(s, IEEE80211_IOC_MESH_ID, 0, len, data); |
| 638 | } |
| 639 | |
| 640 | static void |
| 641 | set80211stationname(const char *val, int d, int s, const struct afswtch *rafp) |
nothing calls this directly
no test coverage detected