1*3b2bd0f6Slogwang /*
2*3b2bd0f6Slogwang  * ng_sample.h
3*3b2bd0f6Slogwang  */
4*3b2bd0f6Slogwang 
5*3b2bd0f6Slogwang /*-
6*3b2bd0f6Slogwang  * Copyright (c) 1996-1999 Whistle Communications, Inc.
7*3b2bd0f6Slogwang  * All rights reserved.
8*3b2bd0f6Slogwang  *
9*3b2bd0f6Slogwang  * Subject to the following obligations and disclaimer of warranty, use and
10*3b2bd0f6Slogwang  * redistribution of this software, in source or object code forms, with or
11*3b2bd0f6Slogwang  * without modifications are expressly permitted by Whistle Communications;
12*3b2bd0f6Slogwang  * provided, however, that:
13*3b2bd0f6Slogwang  * 1. Any and all reproductions of the source or object code must include the
14*3b2bd0f6Slogwang  *    copyright notice above and the following disclaimer of warranties; and
15*3b2bd0f6Slogwang  * 2. No rights are granted, in any manner or form, to use Whistle
16*3b2bd0f6Slogwang  *    Communications, Inc. trademarks, including the mark "WHISTLE
17*3b2bd0f6Slogwang  *    COMMUNICATIONS" on advertising, endorsements, or otherwise except as
18*3b2bd0f6Slogwang  *    such appears in the above copyright notice or in the software.
19*3b2bd0f6Slogwang  *
20*3b2bd0f6Slogwang  * THIS SOFTWARE IS BEING PROVIDED BY WHISTLE COMMUNICATIONS "AS IS", AND
21*3b2bd0f6Slogwang  * TO THE MAXIMUM EXTENT PERMITTED BY LAW, WHISTLE COMMUNICATIONS MAKES NO
22*3b2bd0f6Slogwang  * REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, REGARDING THIS SOFTWARE,
23*3b2bd0f6Slogwang  * INCLUDING WITHOUT LIMITATION, ANY AND ALL IMPLIED WARRANTIES OF
24*3b2bd0f6Slogwang  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT.
25*3b2bd0f6Slogwang  * WHISTLE COMMUNICATIONS DOES NOT WARRANT, GUARANTEE, OR MAKE ANY
26*3b2bd0f6Slogwang  * REPRESENTATIONS REGARDING THE USE OF, OR THE RESULTS OF THE USE OF THIS
27*3b2bd0f6Slogwang  * SOFTWARE IN TERMS OF ITS CORRECTNESS, ACCURACY, RELIABILITY OR OTHERWISE.
28*3b2bd0f6Slogwang  * IN NO EVENT SHALL WHISTLE COMMUNICATIONS BE LIABLE FOR ANY DAMAGES
29*3b2bd0f6Slogwang  * RESULTING FROM OR ARISING OUT OF ANY USE OF THIS SOFTWARE, INCLUDING
30*3b2bd0f6Slogwang  * WITHOUT LIMITATION, ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
31*3b2bd0f6Slogwang  * PUNITIVE, OR CONSEQUENTIAL DAMAGES, PROCUREMENT OF SUBSTITUTE GOODS OR
32*3b2bd0f6Slogwang  * SERVICES, LOSS OF USE, DATA OR PROFITS, HOWEVER CAUSED AND UNDER ANY
33*3b2bd0f6Slogwang  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34*3b2bd0f6Slogwang  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
35*3b2bd0f6Slogwang  * THIS SOFTWARE, EVEN IF WHISTLE COMMUNICATIONS IS ADVISED OF THE POSSIBILITY
36*3b2bd0f6Slogwang  * OF SUCH DAMAGE.
37*3b2bd0f6Slogwang  *
38*3b2bd0f6Slogwang  * Author: Julian Elischer <[email protected]>
39*3b2bd0f6Slogwang  *
40*3b2bd0f6Slogwang  * $FreeBSD$
41*3b2bd0f6Slogwang  * $Whistle: ng_sample.h,v 1.3 1999/01/20 00:22:14 archie Exp $
42*3b2bd0f6Slogwang  */
43*3b2bd0f6Slogwang 
44*3b2bd0f6Slogwang #ifndef _NETGRAPH_NG_SAMPLE_H_
45*3b2bd0f6Slogwang #define _NETGRAPH_NG_SAMPLE_H_
46*3b2bd0f6Slogwang 
47*3b2bd0f6Slogwang /* Node type name. This should be unique among all netgraph node types */
48*3b2bd0f6Slogwang #define NG_XXX_NODE_TYPE	"sample"
49*3b2bd0f6Slogwang 
50*3b2bd0f6Slogwang /* Node type cookie. Should also be unique. This value MUST change whenever
51*3b2bd0f6Slogwang    an incompatible change is made to this header file, to insure consistency.
52*3b2bd0f6Slogwang    The de facto method for generating cookies is to take the output of the
53*3b2bd0f6Slogwang    date command: date -u +'%s' */
54*3b2bd0f6Slogwang #define NGM_XXX_COOKIE		915491374
55*3b2bd0f6Slogwang 
56*3b2bd0f6Slogwang /* Number of active DLCI's we can handle */
57*3b2bd0f6Slogwang #define	XXX_NUM_DLCIS		16
58*3b2bd0f6Slogwang 
59*3b2bd0f6Slogwang /* Hook names */
60*3b2bd0f6Slogwang #define NG_XXX_HOOK_DLCI_LEADIN	"dlci"
61*3b2bd0f6Slogwang #define NG_XXX_HOOK_DOWNSTREAM	"downstream"
62*3b2bd0f6Slogwang #define NG_XXX_HOOK_DEBUG	"debug"
63*3b2bd0f6Slogwang 
64*3b2bd0f6Slogwang /* Netgraph commands understood by this node type */
65*3b2bd0f6Slogwang enum {
66*3b2bd0f6Slogwang 	NGM_XXX_SET_FLAG = 1,
67*3b2bd0f6Slogwang 	NGM_XXX_GET_STATUS,
68*3b2bd0f6Slogwang };
69*3b2bd0f6Slogwang 
70*3b2bd0f6Slogwang /* This structure is returned by the NGM_XXX_GET_STATUS command */
71*3b2bd0f6Slogwang struct ngxxxstat {
72*3b2bd0f6Slogwang 	u_int32_t   packets_in;		/* packets in from downstream */
73*3b2bd0f6Slogwang 	u_int32_t   packets_out;	/* packets out towards downstream */
74*3b2bd0f6Slogwang };
75*3b2bd0f6Slogwang 
76*3b2bd0f6Slogwang /*
77*3b2bd0f6Slogwang  * This is used to define the 'parse type' for a struct ngxxxstat, which
78*3b2bd0f6Slogwang  * is bascially a description of how to convert a binary struct ngxxxstat
79*3b2bd0f6Slogwang  * to an ASCII string and back.  See ng_parse.h for more info.
80*3b2bd0f6Slogwang  *
81*3b2bd0f6Slogwang  * This needs to be kept in sync with the above structure definition
82*3b2bd0f6Slogwang  */
83*3b2bd0f6Slogwang #define NG_XXX_STATS_TYPE_INFO	{				\
84*3b2bd0f6Slogwang 	  { "packets_in",	&ng_parse_uint32_type	},	\
85*3b2bd0f6Slogwang 	  { "packets_out",	&ng_parse_uint32_type	},	\
86*3b2bd0f6Slogwang 	  { NULL }						\
87*3b2bd0f6Slogwang }
88*3b2bd0f6Slogwang 
89*3b2bd0f6Slogwang #endif /* _NETGRAPH_NG_SAMPLE_H_ */
90