Even more missing definitions.
[tinc] / lib / ethernet.h
1 /*
2     ethernet.h -- missing Ethernet related definitions
3     Copyright (C) 2003 Ivo Timmermans <ivo@o2w.nl>
4                   2003 Guus Sliepen <guus@sliepen.eu.org>
5
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.
10
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.
15
16     You should have received a copy of the GNU General Public License
17     along with this program; if not, write to the Free Software
18     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
20     $Id: ethernet.h,v 1.1.2.1 2003/07/18 12:16:23 guus Exp $
21 */
22
23 #ifndef __TINC_ETHERNET_H__
24 #define __TINC_ETHERNET_H__
25
26 #ifndef ETH_ALEN
27 #define ETH_ALEN 6
28 #endif
29
30 #ifndef ARPHRD_ETHER
31 #define ARPHRD_ETHER 1
32 #endif
33
34 #ifndef ETHERTYPE_IP
35 #define ETHERTYPE_IP 0x0800
36 #endif
37
38 #ifndef HAVE_NET_IF_ARP_H
39
40 struct arphdr {
41         unsigned short int ar_hrd;
42         unsigned short int ar_pro;
43         unsigned char ar_hln;
44         unsigned char ar_pln; 
45         unsigned short int ar_op; 
46 };
47
48 #define ARPOP_REQUEST 1 
49 #define ARPOP_REPLY 2 
50 #define ARPOP_RREQUEST 3 
51 #define ARPOP_RREPLY 4 
52 #define ARPOP_InREQUEST 8 
53 #define ARPOP_InREPLY 9 
54 #define ARPOP_NAK 10 
55
56 #endif
57
58 #ifndef HAVE_NETINET_IF_ETHER_H
59
60 struct  ether_arp {
61         struct  arphdr ea_hdr;
62         uint8_t arp_sha[ETH_ALEN];
63         uint8_t arp_spa[4];
64         uint8_t arp_tha[ETH_ALEN];
65         uint8_t arp_tpa[4];
66 };
67 #define arp_hrd ea_hdr.ar_hrd
68 #define arp_pro ea_hdr.ar_pro
69 #define arp_hln ea_hdr.ar_hln
70 #define arp_pln ea_hdr.ar_pln
71 #define arp_op ea_hdr.ar_op
72
73 #endif
74
75 #endif /* __TINC_ETHERNET_H__ */