2 * From FreeBSD 2.2.7: Fundamental constants relating to ethernet.
4 * Copyright 2006, Broadcom Corporation
7 * THIS SOFTWARE IS OFFERED "AS IS", AND BROADCOM GRANTS NO WARRANTIES OF ANY
8 * KIND, EXPRESS OR IMPLIED, BY STATUTE, COMMUNICATION OR OTHERWISE. BROADCOM
9 * SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS
10 * FOR A SPECIFIC PURPOSE OR NONINFRINGEMENT CONCERNING THIS SOFTWARE.
12 * $Id: ethernet.h,v 1.1.1.14 2006/02/27 03:43:16 honor Exp $
15 #ifndef _NET_ETHERNET_H_ /* use native BSD ethernet.h when available */
16 #define _NET_ETHERNET_H_
22 /* enable structure packing */
24 #define PACKED __attribute__((packed))
31 * The number of bytes in an ethernet (MAC) address.
33 #define ETHER_ADDR_LEN 6
36 * The number of bytes in the type field.
38 #define ETHER_TYPE_LEN 2
41 * The number of bytes in the trailing CRC field.
43 #define ETHER_CRC_LEN 4
46 * The length of the combined header.
48 #define ETHER_HDR_LEN (ETHER_ADDR_LEN*2+ETHER_TYPE_LEN)
51 * The minimum packet length.
53 #define ETHER_MIN_LEN 64
56 * The minimum packet user data length.
58 #define ETHER_MIN_DATA 46
61 * The maximum packet length.
63 #define ETHER_MAX_LEN 1518
66 * The maximum packet user data length.
68 #define ETHER_MAX_DATA 1500
71 #define ETHER_TYPE_IP 0x0800 /* IP */
72 #define ETHER_TYPE_ARP 0x0806 /* ARP */
73 #define ETHER_TYPE_8021Q 0x8100 /* 802.1Q */
74 #define ETHER_TYPE_BRCM 0x886c /* Broadcom Corp. */
75 #define ETHER_TYPE_802_1X 0x888e /* 802.1x */
77 #define ETHER_TYPE_802_1X_PREAUTH 0x88c7 /* 802.1x preauthentication */
80 /* Broadcom subtype follows ethertype; First 2 bytes are reserved; Next 2 are subtype; */
81 #define ETHER_BRCM_SUBTYPE_LEN 4 /* Broadcom 4 byte subtype */
82 #define ETHER_BRCM_CRAM 0x1 /* Broadcom subtype cram protocol */
85 #define ETHER_DEST_OFFSET 0 /* dest address offset */
86 #define ETHER_SRC_OFFSET 6 /* src address offset */
87 #define ETHER_TYPE_OFFSET 12 /* ether type offset */
90 * A macro to validate a length with
92 #define ETHER_IS_VALID_LEN(foo) \
93 ((foo) >= ETHER_MIN_LEN && (foo) <= ETHER_MAX_LEN)
96 #ifndef __INCif_etherh /* Quick and ugly hack for VxWorks */
98 * Structure of a 10Mb/s Ethernet header.
100 struct ether_header
{
101 uint8 ether_dhost
[ETHER_ADDR_LEN
];
102 uint8 ether_shost
[ETHER_ADDR_LEN
];
107 * Structure of a 48-bit Ethernet address.
110 uint8 octet
[ETHER_ADDR_LEN
];
112 #endif /* !__INCif_etherh Quick and ugly hack for VxWorks */
115 * Takes a pointer, sets locally admininistered
116 * address bit in the 48-bit Ethernet address.
118 #define ETHER_SET_LOCALADDR(ea) (((uint8 *)(ea))[0] = (((uint8 *)(ea))[0] | 2))
121 * Takes a pointer, returns true if a 48-bit multicast address
122 * (including broadcast, since it is all ones)
124 #define ETHER_ISMULTI(ea) (((uint8 *)(ea))[0] & 1)
127 /* compare two ethernet addresses - assumes the pointers can be referenced as shorts */
128 #define ether_cmp(a, b) (!(((short*)a)[0] == ((short*)b)[0]) | \
129 !(((short*)a)[1] == ((short*)b)[1]) | \
130 !(((short*)a)[2] == ((short*)b)[2]))
132 /* copy an ethernet address - assumes the pointers can be referenced as shorts */
133 #define ether_copy(s, d) { \
134 ((short*)d)[0] = ((short*)s)[0]; \
135 ((short*)d)[1] = ((short*)s)[1]; \
136 ((short*)d)[2] = ((short*)s)[2]; }
139 * Takes a pointer, returns true if a 48-bit broadcast (all ones)
141 #define ETHER_ISBCAST(ea) ((((uint8 *)(ea))[0] & \
142 ((uint8 *)(ea))[1] & \
143 ((uint8 *)(ea))[2] & \
144 ((uint8 *)(ea))[3] & \
145 ((uint8 *)(ea))[4] & \
146 ((uint8 *)(ea))[5]) == 0xff)
148 static const struct ether_addr ether_bcast
= {{255, 255, 255, 255, 255, 255}};
151 * Takes a pointer, returns true if a 48-bit null address (all zeros)
153 #define ETHER_ISNULLADDR(ea) ((((uint8 *)(ea))[0] | \
154 ((uint8 *)(ea))[1] | \
155 ((uint8 *)(ea))[2] | \
156 ((uint8 *)(ea))[3] | \
157 ((uint8 *)(ea))[4] | \
158 ((uint8 *)(ea))[5]) == 0)
161 #if !defined(__GNUC__)
165 #endif /* _NET_ETHERNET_H_ */
This page took 0.049448 seconds and 5 git commands to generate.