152419Sjulian/*
252419Sjulian * ng_cisco.h
3139823Simp */
4139823Simp
5139823Simp/*-
652419Sjulian * Copyright (c) 1996-1999 Whistle Communications, Inc.
752419Sjulian * All rights reserved.
852419Sjulian *
952419Sjulian * Subject to the following obligations and disclaimer of warranty, use and
1052419Sjulian * redistribution of this software, in source or object code forms, with or
1152419Sjulian * without modifications are expressly permitted by Whistle Communications;
1252419Sjulian * provided, however, that:
1352419Sjulian * 1. Any and all reproductions of the source or object code must include the
1452419Sjulian *    copyright notice above and the following disclaimer of warranties; and
1552419Sjulian * 2. No rights are granted, in any manner or form, to use Whistle
1652419Sjulian *    Communications, Inc. trademarks, including the mark "WHISTLE
1752419Sjulian *    COMMUNICATIONS" on advertising, endorsements, or otherwise except as
1852419Sjulian *    such appears in the above copyright notice or in the software.
1952419Sjulian *
2052419Sjulian * THIS SOFTWARE IS BEING PROVIDED BY WHISTLE COMMUNICATIONS "AS IS", AND
2152419Sjulian * TO THE MAXIMUM EXTENT PERMITTED BY LAW, WHISTLE COMMUNICATIONS MAKES NO
2252419Sjulian * REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, REGARDING THIS SOFTWARE,
2352419Sjulian * INCLUDING WITHOUT LIMITATION, ANY AND ALL IMPLIED WARRANTIES OF
2452419Sjulian * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT.
2552419Sjulian * WHISTLE COMMUNICATIONS DOES NOT WARRANT, GUARANTEE, OR MAKE ANY
2652419Sjulian * REPRESENTATIONS REGARDING THE USE OF, OR THE RESULTS OF THE USE OF THIS
2752419Sjulian * SOFTWARE IN TERMS OF ITS CORRECTNESS, ACCURACY, RELIABILITY OR OTHERWISE.
2852419Sjulian * IN NO EVENT SHALL WHISTLE COMMUNICATIONS BE LIABLE FOR ANY DAMAGES
2952419Sjulian * RESULTING FROM OR ARISING OUT OF ANY USE OF THIS SOFTWARE, INCLUDING
3052419Sjulian * WITHOUT LIMITATION, ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
3152419Sjulian * PUNITIVE, OR CONSEQUENTIAL DAMAGES, PROCUREMENT OF SUBSTITUTE GOODS OR
3252419Sjulian * SERVICES, LOSS OF USE, DATA OR PROFITS, HOWEVER CAUSED AND UNDER ANY
3352419Sjulian * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
3452419Sjulian * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
3552419Sjulian * THIS SOFTWARE, EVEN IF WHISTLE COMMUNICATIONS IS ADVISED OF THE POSSIBILITY
3652419Sjulian * OF SUCH DAMAGE.
3752419Sjulian *
3867506Sjulian * Author: Archie Cobbs <archie@freebsd.org>
3952419Sjulian *
4052419Sjulian * $FreeBSD$
4152419Sjulian * $Whistle: ng_cisco.h,v 1.6 1999/01/25 01:21:48 archie Exp $
4252419Sjulian */
4352419Sjulian
44122481Sru#ifndef _NETGRAPH_NG_CISCO_H_
45122481Sru#define _NETGRAPH_NG_CISCO_H_
4652419Sjulian
4752419Sjulian/* Node type name and magic cookie */
4852419Sjulian#define NG_CISCO_NODE_TYPE		"cisco"
4952419Sjulian#define NGM_CISCO_COOKIE		860707227
5052419Sjulian
5152419Sjulian/* Hook names */
5252419Sjulian#define NG_CISCO_HOOK_DOWNSTREAM	"downstream"
5352419Sjulian#define NG_CISCO_HOOK_INET		"inet"
5460330Sarchie#define NG_CISCO_HOOK_INET6		"inet6"
5552419Sjulian#define NG_CISCO_HOOK_APPLETALK		"atalk"
5652419Sjulian#define NG_CISCO_HOOK_IPX		"ipx"
5752419Sjulian#define NG_CISCO_HOOK_DEBUG		"debug"
5852419Sjulian
5952419Sjulian/* Netgraph commands */
6052419Sjulianenum {
6153913Sarchie	NGM_CISCO_SET_IPADDR = 1,	/* requires a struct ng_cisco_ipaddr */
6253913Sarchie	NGM_CISCO_GET_IPADDR,		/* returns a struct ng_cisco_ipaddr */
6353913Sarchie	NGM_CISCO_GET_STATUS,		/* returns a struct ng_cisco_stat */
6453913Sarchie};
6552419Sjulian
6653913Sarchiestruct ng_cisco_ipaddr {
6753913Sarchie	struct in_addr	ipaddr;		/* IP address */
6853913Sarchie	struct in_addr	netmask;	/* Netmask */
6952419Sjulian};
7052419Sjulian
7153913Sarchie/* Keep this in sync with the above structure definition */
7253913Sarchie#define NG_CISCO_IPADDR_TYPE_INFO	{			\
7353913Sarchie	  { "ipaddr",		&ng_parse_ipaddr_type	},	\
7453913Sarchie	  { "netmask",		&ng_parse_ipaddr_type	},	\
7597685Sarchie	  { NULL }						\
7653913Sarchie}
7753913Sarchie
7853913Sarchiestruct ng_cisco_stats {
79231543Sfjoe	uint32_t   seqRetries;		/* # unack'd retries */
80231543Sfjoe	uint32_t   keepAlivePeriod;	/* in seconds */
8152419Sjulian};
8252419Sjulian
8353913Sarchie/* Keep this in sync with the above structure definition */
8453913Sarchie#define NG_CISCO_STATS_TYPE_INFO	{			\
8564508Sarchie	  { "seqRetries",	&ng_parse_uint32_type	},	\
8664508Sarchie	  { "keepAlivePeriod",	&ng_parse_uint32_type	},	\
8797685Sarchie	  { NULL }						\
8853913Sarchie}
8953913Sarchie
90122481Sru#endif /* _NETGRAPH_NG_CISCO_H_ */
9152419Sjulian
92