]> git.saurik.com Git - apple/xnu.git/blame - bsd/net/if_vlan_var.h
xnu-344.tar.gz
[apple/xnu.git] / bsd / net / if_vlan_var.h
CommitLineData
1c79356b
A
1/*
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
11 *
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
18 * under the License.
19 *
20 * @APPLE_LICENSE_HEADER_END@
21 */
22/*
23 * Copyright 1998 Massachusetts Institute of Technology
24 *
25 * Permission to use, copy, modify, and distribute this software and
26 * its documentation for any purpose and without fee is hereby
27 * granted, provided that both the above copyright notice and this
28 * permission notice appear in all copies, that both the above
29 * copyright notice and this permission notice appear in all
30 * supporting documentation, and that the name of M.I.T. not be used
31 * in advertising or publicity pertaining to distribution of the
32 * software without specific, written prior permission. M.I.T. makes
33 * no representations about the suitability of this software for any
34 * purpose. It is provided "as is" without express or implied
35 * warranty.
36 *
37 * THIS SOFTWARE IS PROVIDED BY M.I.T. ``AS IS''. M.I.T. DISCLAIMS
38 * ALL EXPRESS OR IMPLIED WARRANTIES WITH REGARD TO THIS SOFTWARE,
39 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
40 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT
41 * SHALL M.I.T. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
42 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
43 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
44 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
45 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
46 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
47 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
48 * SUCH DAMAGE.
49 *
50 */
51
52#ifndef _NET_IF_VLAN_VAR_H_
53#define _NET_IF_VLAN_VAR_H_ 1
9bccf70c 54#include <sys/appleapiopts.h>
1c79356b 55
9bccf70c 56#ifdef __APPLE_API_PRIVATE
1c79356b
A
57#ifdef KERNEL
58struct ifvlan {
59 struct arpcom ifv_ac; /* make this an interface */
60 struct ifnet *ifv_p; /* parent inteface of this vlan */
61 struct ifv_linkmib {
62 int ifvm_parent;
63 u_int16_t ifvm_proto; /* encapsulation ethertype */
64 u_int16_t ifvm_tag; /* tag to apply on packets leaving if */
65 } ifv_mib;
66};
67#define ifv_if ifv_ac.ac_if
68#define ifv_tag ifv_mib.ifvm_tag
69#endif /* KERNEL */
70
71struct ether_vlan_header {
72 u_char evl_dhost[ETHER_ADDR_LEN];
73 u_char evl_shost[ETHER_ADDR_LEN];
74 u_int16_t evl_encap_proto;
75 u_int16_t evl_tag;
76 u_int16_t evl_proto;
77};
78
79#define EVL_VLANOFTAG(tag) ((tag) & 4095)
80#define EVL_PRIOFTAG(tag) (((tag) >> 13) & 7)
81#define EVL_ENCAPLEN 4 /* length in octets of encapsulation */
82
83/* When these sorts of interfaces get their own identifier... */
84#define IFT_8021_VLAN IFT_PROPVIRTUAL
85
86/* sysctl(3) tags, for compatibility purposes */
87#define VLANCTL_PROTO 1
88#define VLANCTL_MAX 2
89
90/*
91 * Configuration structure for SIOCSETVLAN and SIOCGETVLAN ioctls.
92 */
93struct vlanreq {
94 char vlr_parent[IFNAMSIZ];
95 u_short vlr_tag;
96};
97#define SIOCSETVLAN SIOCSIFGENERIC
98#define SIOCGETVLAN SIOCGIFGENERIC
99
100#ifdef KERNEL
101/* shared with if_ethersubr.c: */
102extern u_int vlan_proto;
103extern int vlan_input(struct ether_header *eh, struct mbuf *m);
104#endif
105
9bccf70c 106#endif /* __APPLE_API_PRIVATE */
1c79356b 107#endif /* _NET_IF_VLAN_VAR_H_ */