source: rtems-libbsd/rtemsbsd/include/rtems/netcmds-config.h @ ce2262e

55-freebsd-126-freebsd-12
Last change on this file since ce2262e was ce2262e, checked in by Sichen Zhao <1473996754@…>, on 10/12/17 at 12:16:09

Add wpa_supplicant_fork command.

Add fork command for wpa supplicant to start a new task.

  • Property mode set to 100644
File size: 1.4 KB
Line 
1/**
2 * @file rtems/netcmds-config.h
3 *
4 * RTEMS Shell Network Command Set Configuration
5 */
6
7/*
8 *  COPYRIGHT (c) 1989-2012.
9 *  On-Line Applications Research Corporation (OAR).
10 *
11 *  The license and distribution terms for this file may be
12 *  found in the file LICENSE in this distribution or at
13 *  http://www.rtems.com/license/LICENSE.
14 */
15
16#ifndef _RTEMS_NETCMDS_CONFIG_h
17#define _RTEMS_NETCMDS_CONFIG_h
18
19#include <rtems/shell.h>
20
21#ifdef __cplusplus
22extern "C" {
23#endif /* __cplusplus */
24
25extern rtems_shell_cmd_t rtems_shell_ARP_Command;
26
27extern rtems_shell_cmd_t rtems_shell_PFCTL_Command;
28
29extern rtems_shell_cmd_t rtems_shell_PING_Command;
30extern rtems_shell_cmd_t rtems_shell_PING6_Command;
31
32extern rtems_shell_cmd_t rtems_shell_IFCONFIG_Command;
33extern rtems_shell_cmd_t rtems_shell_ROUTE_Command;
34extern rtems_shell_cmd_t rtems_shell_NETSTAT_Command;
35
36extern rtems_shell_cmd_t rtems_shell_DHCPCD_Command;
37
38extern rtems_shell_cmd_t rtems_shell_HOSTNAME_Command;
39
40extern rtems_shell_cmd_t rtems_shell_TCPDUMP_Command;
41
42extern rtems_shell_cmd_t rtems_shell_WPA_SUPPLICANT_Command;
43
44extern rtems_shell_cmd_t rtems_shell_WPA_SUPPLICANT_FORK_Command;
45
46extern rtems_shell_cmd_t rtems_shell_SYSCTL_Command;
47
48extern rtems_shell_cmd_t rtems_shell_VMSTAT_Command;
49
50extern rtems_shell_cmd_t rtems_shell_WLANSTATS_Command;
51
52extern rtems_shell_cmd_t rtems_shell_STTY_Command;
53
54#ifdef __cplusplus
55}
56#endif /* __cplusplus */
57
58#endif
Note: See TracBrowser for help on using the repository browser.