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

5
Last change on this file since e6acc15 was e6acc15, checked in by Sebastian Huber <sebastian.huber@…>, on 09/20/19 at 05:57:01

NVMECONTROL(8): Port to RTEMS

Update #3821.

  • Property mode set to 100644
File size: 1.7 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_I2C_Command;
30
31extern rtems_shell_cmd_t rtems_shell_PING_Command;
32extern rtems_shell_cmd_t rtems_shell_PING6_Command;
33
34extern rtems_shell_cmd_t rtems_shell_IFCONFIG_Command;
35extern rtems_shell_cmd_t rtems_shell_ROUTE_Command;
36extern rtems_shell_cmd_t rtems_shell_NETSTAT_Command;
37
38extern rtems_shell_cmd_t rtems_shell_DHCPCD_Command;
39
40extern rtems_shell_cmd_t rtems_shell_HOSTNAME_Command;
41
42extern rtems_shell_cmd_t rtems_shell_TCPDUMP_Command;
43
44extern rtems_shell_cmd_t rtems_shell_WPA_SUPPLICANT_Command;
45
46extern rtems_shell_cmd_t rtems_shell_WPA_SUPPLICANT_FORK_Command;
47
48extern rtems_shell_cmd_t rtems_shell_SYSCTL_Command;
49
50extern rtems_shell_cmd_t rtems_shell_VMSTAT_Command;
51
52extern rtems_shell_cmd_t rtems_shell_WLANSTATS_Command;
53
54extern rtems_shell_cmd_t rtems_shell_STTY_Command;
55
56extern rtems_shell_cmd_t rtems_shell_RACOON_Command;
57extern rtems_shell_cmd_t rtems_shell_SETKEY_Command;
58
59extern rtems_shell_cmd_t rtems_shell_OPENSSL_Command;
60
61extern rtems_shell_cmd_t rtems_shell_NVMECONTROL_Command;
62
63#ifdef __cplusplus
64}
65#endif /* __cplusplus */
66
67#endif
Note: See TracBrowser for help on using the repository browser.