| 557 | } |
| 558 | |
| 559 | static int wifi_disconnect(int argc, char *argv[]) |
| 560 | { |
| 561 | if (argc != 2) |
| 562 | { |
| 563 | return -1; |
| 564 | } |
| 565 | |
| 566 | rt_wlan_disconnect(); |
| 567 | return 0; |
| 568 | } |
| 569 | |
| 570 | static int wifi_ap_stop(int argc, char *argv[]) |
| 571 | { |
nothing calls this directly
no test coverage detected