blob: cf169206d7b796104d65b7664a5bacc6fd72db95 [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{
13 void basic_register_cmds(void);
14 basic_register_cmds();
15
16 void sta_register_cmds(void);
17 sta_register_cmds();
18
19 void traffic_register_cmds(void);
20 traffic_register_cmds();
21
22#ifdef CONFIG_TRAFFIC_AGENT
23 void traffic_agent_register_cmds(void);
24 traffic_agent_register_cmds();
25#endif /* CONFIG_TRAFFIC_AGENT */
26
27 void p2p_register_cmds(void);
28 p2p_register_cmds();
29
30 void ap_register_cmds(void);
31 ap_register_cmds();
32
33 void powerswitch_register_cmds(void);
34 powerswitch_register_cmds();
35
36 void atheros_register_cmds(void);
37 atheros_register_cmds();
38
39#ifdef CONFIG_WLANTEST
40 void wlantest_register_cmds(void);
41 wlantest_register_cmds();
42#endif /* CONFIG_WLANTEST */
43
44 void dev_register_cmds(void);
45 dev_register_cmds();
46
47#ifdef CONFIG_SNIFFER
48 void sniffer_register_cmds(void);
49 sniffer_register_cmds();
50#endif /* CONFIG_SNIFFER */
51
52#ifdef CONFIG_SERVER
53 void server_register_cmds(void);
54 server_register_cmds();
55#endif /* CONFIG_SERVER */
Amarnath Hullur Subramanyam9c381f52017-03-17 00:04:41 -070056
57#ifdef MIRACAST
58 void miracast_register_cmds(void);
59 miracast_register_cmds();
60#endif /* MIRACAST */
Jouni Malinencd4e3c32015-10-29 12:39:56 +020061}