mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-12-22 21:22:37 +01:00
client: define WSC commands
This commit is contained in:
parent
ee369bacc9
commit
ccb3afc1f1
26
client/wsc.c
26
client/wsc.c
@ -33,7 +33,33 @@ static struct proxy_interface_type wsc_interface_type = {
|
|||||||
.interface = IWD_WSC_INTERFACE,
|
.interface = IWD_WSC_INTERFACE,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static enum cmd_status cmd_push_button(const char *device_name, char *args)
|
||||||
|
{
|
||||||
|
return CMD_STATUS_UNSUPPORTED;
|
||||||
|
}
|
||||||
|
|
||||||
|
static enum cmd_status cmd_start_user_pin(const char *device_name, char *args)
|
||||||
|
{
|
||||||
|
return CMD_STATUS_UNSUPPORTED;
|
||||||
|
}
|
||||||
|
|
||||||
|
static enum cmd_status cmd_start_pin(const char *device_name, char *args)
|
||||||
|
{
|
||||||
|
return CMD_STATUS_UNSUPPORTED;
|
||||||
|
}
|
||||||
|
|
||||||
|
static enum cmd_status cmd_cancel(const char *device_name, char *args)
|
||||||
|
{
|
||||||
|
return CMD_STATUS_UNSUPPORTED;
|
||||||
|
}
|
||||||
|
|
||||||
static const struct command wsc_commands[] = {
|
static const struct command wsc_commands[] = {
|
||||||
|
{ "<wlan>", "push-button", NULL, cmd_push_button, "PushButton mode" },
|
||||||
|
{ "<wlan>", "start-user-pin", "<8 digit PIN>", cmd_start_user_pin,
|
||||||
|
"PIN mode" },
|
||||||
|
{ "<wlan>", "start-pin", NULL, cmd_start_pin,
|
||||||
|
"PIN mode with generated\n\t\t\t\t\t\t 8 digit PIN" },
|
||||||
|
{ "<wlan>", "cancel", NULL, cmd_cancel, "Aborts WSC operations" },
|
||||||
{ }
|
{ }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user