blob: 52c82a1453ea01cf25141d35138cb14618d4cb71 [file] [log] [blame]
Jouni Malinencd4e3c32015-10-29 12:39:56 +02001/*
2 * Sigma Control API DUT (station/AP)
3 * Copyright (c) 2010, Atheros Communications, Inc.
Jouni Malinen9d7e31d2017-12-22 18:55:04 +02004 * Copyright (c) 2011-2014, 2017, Qualcomm Atheros, Inc.
Jouni Malinencd4e3c32015-10-29 12:39:56 +02005 * All Rights Reserved.
6 * Licensed under the Clear BSD license. See README for more details.
7 */
8
9#include "sigma_dut.h"
10
11void sigma_dut_register_cmds(void)
12{
Jouni Malinencd4e3c32015-10-29 12:39:56 +020013 basic_register_cmds();
Jouni Malinencd4e3c32015-10-29 12:39:56 +020014 sta_register_cmds();
Jouni Malinencd4e3c32015-10-29 12:39:56 +020015 traffic_register_cmds();
Jouni Malinencd4e3c32015-10-29 12:39:56 +020016#ifdef CONFIG_TRAFFIC_AGENT
Jouni Malinencd4e3c32015-10-29 12:39:56 +020017 traffic_agent_register_cmds();
18#endif /* CONFIG_TRAFFIC_AGENT */
Jouni Malinencd4e3c32015-10-29 12:39:56 +020019 p2p_register_cmds();
Jouni Malinencd4e3c32015-10-29 12:39:56 +020020 ap_register_cmds();
Jouni Malinencd4e3c32015-10-29 12:39:56 +020021 powerswitch_register_cmds();
Jouni Malinencd4e3c32015-10-29 12:39:56 +020022 atheros_register_cmds();
Jouni Malinencd4e3c32015-10-29 12:39:56 +020023#ifdef CONFIG_WLANTEST
Jouni Malinencd4e3c32015-10-29 12:39:56 +020024 wlantest_register_cmds();
25#endif /* CONFIG_WLANTEST */
Jouni Malinencd4e3c32015-10-29 12:39:56 +020026 dev_register_cmds();
Jouni Malinencd4e3c32015-10-29 12:39:56 +020027#ifdef CONFIG_SNIFFER
Jouni Malinencd4e3c32015-10-29 12:39:56 +020028 sniffer_register_cmds();
29#endif /* CONFIG_SNIFFER */
Jouni Malinencd4e3c32015-10-29 12:39:56 +020030#ifdef CONFIG_SERVER
Jouni Malinencd4e3c32015-10-29 12:39:56 +020031 server_register_cmds();
32#endif /* CONFIG_SERVER */
Amarnath Hullur Subramanyam9c381f52017-03-17 00:04:41 -070033#ifdef MIRACAST
Amarnath Hullur Subramanyam9c381f52017-03-17 00:04:41 -070034 miracast_register_cmds();
35#endif /* MIRACAST */
Jouni Malinencd4e3c32015-10-29 12:39:56 +020036}