2 ethernet.h -- missing Ethernet related definitions
3 Copyright (C) 2005 Ivo Timmermans
4 2006 Guus Sliepen <guus@tinc-vpn.org>
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License along
17 with this program; if not, write to the Free Software Foundation, Inc.,
18 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 #ifndef __TINC_ETHERNET_H__
22 #define __TINC_ETHERNET_H__
29 #define ARPHRD_ETHER 1
33 #define ETH_P_IP 0x0800
37 #define ETH_P_ARP 0x0806
41 #define ETH_P_IPV6 0x86DD
45 #define ETH_P_8021Q 0x8100
48 #ifndef HAVE_STRUCT_ETHER_HEADER
50 uint8_t ether_dhost[ETH_ALEN];
51 uint8_t ether_shost[ETH_ALEN];
53 } __attribute__ ((__gcc_struct__, __packed__));
56 #ifndef HAVE_STRUCT_ARPHDR
63 } __attribute__ ((__gcc_struct__, __packed__));
65 #define ARPOP_REQUEST 1
67 #define ARPOP_RREQUEST 3
68 #define ARPOP_RREPLY 4
69 #define ARPOP_InREQUEST 8
70 #define ARPOP_InREPLY 9
74 #ifndef HAVE_STRUCT_ETHER_ARP
77 uint8_t arp_sha[ETH_ALEN];
79 uint8_t arp_tha[ETH_ALEN];
81 } __attribute__ ((__gcc_struct__, __packed__));
82 #define arp_hrd ea_hdr.ar_hrd
83 #define arp_pro ea_hdr.ar_pro
84 #define arp_hln ea_hdr.ar_hln
85 #define arp_pln ea_hdr.ar_pln
86 #define arp_op ea_hdr.ar_op
89 #endif /* __TINC_ETHERNET_H__ */