zephyr/modules/hostap/src/wpa_cli.c
Kapil Bhatt 8a5a5fb4b8 hostap: Add interactive keyword for commands
The keyword is added into array argv of wpa_cli.
The commands which require to be interactive
this keyword will allow ro print output for them.

Signed-off-by: Kapil Bhatt <kapil.bhatt@nordicsemi.no>
2024-03-20 09:00:52 +01:00

42 lines
818 B
C

/*
* Copyright (c) 2023 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: Apache-2.0
*/
/* @file
* @brief wpa_cli implementation for Zephyr OS
*/
#include <zephyr/kernel.h>
#include <zephyr/shell/shell.h>
#include <zephyr/init.h>
#include "wpa_cli_zephyr.h"
static int cmd_wpa_cli(const struct shell *sh,
size_t argc,
const char *argv[])
{
ARG_UNUSED(sh);
if (argc == 1) {
shell_error(sh, "Missing argument");
return -EINVAL;
}
argv[argc] = "interactive";
argc++;
/* Remove wpa_cli from the argument list */
return z_wpa_ctrl_zephyr_cmd(argc - 1, &argv[1]);
}
/* Persisting with "wpa_cli" naming for compatibility with Wi-Fi
* certification applications and scripts.
*/
SHELL_CMD_REGISTER(wpa_cli,
NULL,
"wpa_cli commands (only for internal use)",
cmd_wpa_cli);