1*3b2bd0f6Slogwang 
2*3b2bd0f6Slogwang /*
3*3b2bd0f6Slogwang  * ng_ether.h
4*3b2bd0f6Slogwang  */
5*3b2bd0f6Slogwang 
6*3b2bd0f6Slogwang /*-
7*3b2bd0f6Slogwang  * Copyright (c) 1996-1999 Whistle Communications, Inc.
8*3b2bd0f6Slogwang  * All rights reserved.
9*3b2bd0f6Slogwang  *
10*3b2bd0f6Slogwang  * Subject to the following obligations and disclaimer of warranty, use and
11*3b2bd0f6Slogwang  * redistribution of this software, in source or object code forms, with or
12*3b2bd0f6Slogwang  * without modifications are expressly permitted by Whistle Communications;
13*3b2bd0f6Slogwang  * provided, however, that:
14*3b2bd0f6Slogwang  * 1. Any and all reproductions of the source or object code must include the
15*3b2bd0f6Slogwang  *    copyright notice above and the following disclaimer of warranties; and
16*3b2bd0f6Slogwang  * 2. No rights are granted, in any manner or form, to use Whistle
17*3b2bd0f6Slogwang  *    Communications, Inc. trademarks, including the mark "WHISTLE
18*3b2bd0f6Slogwang  *    COMMUNICATIONS" on advertising, endorsements, or otherwise except as
19*3b2bd0f6Slogwang  *    such appears in the above copyright notice or in the software.
20*3b2bd0f6Slogwang  *
21*3b2bd0f6Slogwang  * THIS SOFTWARE IS BEING PROVIDED BY WHISTLE COMMUNICATIONS "AS IS", AND
22*3b2bd0f6Slogwang  * TO THE MAXIMUM EXTENT PERMITTED BY LAW, WHISTLE COMMUNICATIONS MAKES NO
23*3b2bd0f6Slogwang  * REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, REGARDING THIS SOFTWARE,
24*3b2bd0f6Slogwang  * INCLUDING WITHOUT LIMITATION, ANY AND ALL IMPLIED WARRANTIES OF
25*3b2bd0f6Slogwang  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT.
26*3b2bd0f6Slogwang  * WHISTLE COMMUNICATIONS DOES NOT WARRANT, GUARANTEE, OR MAKE ANY
27*3b2bd0f6Slogwang  * REPRESENTATIONS REGARDING THE USE OF, OR THE RESULTS OF THE USE OF THIS
28*3b2bd0f6Slogwang  * SOFTWARE IN TERMS OF ITS CORRECTNESS, ACCURACY, RELIABILITY OR OTHERWISE.
29*3b2bd0f6Slogwang  * IN NO EVENT SHALL WHISTLE COMMUNICATIONS BE LIABLE FOR ANY DAMAGES
30*3b2bd0f6Slogwang  * RESULTING FROM OR ARISING OUT OF ANY USE OF THIS SOFTWARE, INCLUDING
31*3b2bd0f6Slogwang  * WITHOUT LIMITATION, ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
32*3b2bd0f6Slogwang  * PUNITIVE, OR CONSEQUENTIAL DAMAGES, PROCUREMENT OF SUBSTITUTE GOODS OR
33*3b2bd0f6Slogwang  * SERVICES, LOSS OF USE, DATA OR PROFITS, HOWEVER CAUSED AND UNDER ANY
34*3b2bd0f6Slogwang  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
35*3b2bd0f6Slogwang  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
36*3b2bd0f6Slogwang  * THIS SOFTWARE, EVEN IF WHISTLE COMMUNICATIONS IS ADVISED OF THE POSSIBILITY
37*3b2bd0f6Slogwang  * OF SUCH DAMAGE.
38*3b2bd0f6Slogwang  *
39*3b2bd0f6Slogwang  * Author: Archie Cobbs <[email protected]>
40*3b2bd0f6Slogwang  *
41*3b2bd0f6Slogwang  * $FreeBSD$
42*3b2bd0f6Slogwang  * $Whistle: ng_ether.h,v 1.1 1999/02/02 03:17:22 julian Exp $
43*3b2bd0f6Slogwang  */
44*3b2bd0f6Slogwang 
45*3b2bd0f6Slogwang #ifndef _NETGRAPH_NG_ETHER_H_
46*3b2bd0f6Slogwang #define _NETGRAPH_NG_ETHER_H_
47*3b2bd0f6Slogwang 
48*3b2bd0f6Slogwang /* Node type name and magic cookie */
49*3b2bd0f6Slogwang #define NG_ETHER_NODE_TYPE	"ether"
50*3b2bd0f6Slogwang #define NGM_ETHER_COOKIE	917786906
51*3b2bd0f6Slogwang 
52*3b2bd0f6Slogwang /* Hook names */
53*3b2bd0f6Slogwang #define NG_ETHER_HOOK_LOWER	"lower"		/* connection to raw device */
54*3b2bd0f6Slogwang #define NG_ETHER_HOOK_UPPER	"upper"		/* connection to upper layers */
55*3b2bd0f6Slogwang #define NG_ETHER_HOOK_DIVERT	"divert"	/* alias for lower */
56*3b2bd0f6Slogwang #define NG_ETHER_HOOK_ORPHAN	"orphans"	/* like lower, unknowns only */
57*3b2bd0f6Slogwang 
58*3b2bd0f6Slogwang /* Netgraph control messages */
59*3b2bd0f6Slogwang enum {
60*3b2bd0f6Slogwang 	NGM_ETHER_GET_IFNAME = 1,	/* get the interface name */
61*3b2bd0f6Slogwang 	NGM_ETHER_GET_IFINDEX,		/* get the interface global index # */
62*3b2bd0f6Slogwang 	NGM_ETHER_GET_ENADDR,		/* get Ethernet address */
63*3b2bd0f6Slogwang 	NGM_ETHER_SET_ENADDR,		/* set Ethernet address */
64*3b2bd0f6Slogwang 	NGM_ETHER_GET_PROMISC,		/* get node's promiscuous mode bit */
65*3b2bd0f6Slogwang 	NGM_ETHER_SET_PROMISC,		/* enable/disable promiscuous mode */
66*3b2bd0f6Slogwang 	NGM_ETHER_GET_AUTOSRC,		/* get source address override */
67*3b2bd0f6Slogwang 	NGM_ETHER_SET_AUTOSRC,		/* enable/disable src addr override */
68*3b2bd0f6Slogwang 	NGM_ETHER_ADD_MULTI,		/* add multicast membership */
69*3b2bd0f6Slogwang 	NGM_ETHER_DEL_MULTI,		/* delete multicast membership */
70*3b2bd0f6Slogwang 	NGM_ETHER_DETACH,		/* our way to be shut down */
71*3b2bd0f6Slogwang };
72*3b2bd0f6Slogwang 
73*3b2bd0f6Slogwang #endif /* _NETGRAPH_NG_ETHER_H_ */
74