source: rtems-libbsd/freebsd-userspace/rtems/include/rtems/netcmds-config.h @ b6ac989

4.1155-freebsd-126-freebsd-12freebsd-9.3
Last change on this file since b6ac989 was b6ac989, checked in by Joel Sherrill <joel.sherrill@…>, on 10/17/12 at 16:13:36

Add netstat command

This adds the netstat command. All but one file is currently enabled.
That file does not currently build.

Also added libmemstat and libutil. libmemstat had a lot of code related
to kvm and kernel memory access disabled. This may or may not be an
issue.

  • Property mode set to 100644
File size: 810 bytes
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/*
22 *  Externs for all command definition structures
23 */
24// #if RTEMS_NETWORKING
25  extern rtems_shell_cmd_t rtems_shell_PING_Command;
26  extern rtems_shell_cmd_t rtems_shell_PING6_Command;
27
28  extern rtems_shell_cmd_t rtems_shell_IFCONFIG_Command;
29  extern rtems_shell_cmd_t rtems_shell_ROUTE_Command;
30  extern rtems_shell_cmd_t rtems_shell_NETSTAT_Command;
31// #endif
32
33#endif
Note: See TracBrowser for help on using the repository browser.