Subversion Repositories HelenOS

Rev

Rev 3846 | Rev 4558 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
3846 mejdrech 1
/*
3912 mejdrech 2
 * Copyright (c) 2009 Lukas Mejdrech
3846 mejdrech 3
 * All rights reserved.
4
 *
5
 * Redistribution and use in source and binary forms, with or without
6
 * modification, are permitted provided that the following conditions
7
 * are met:
8
 *
9
 * - Redistributions of source code must retain the above copyright
10
 *   notice, this list of conditions and the following disclaimer.
11
 * - Redistributions in binary form must reproduce the above copyright
12
 *   notice, this list of conditions and the following disclaimer in the
13
 *   documentation and/or other materials provided with the distribution.
14
 * - The name of the author may not be used to endorse or promote products
15
 *   derived from this software without specific prior written permission.
16
 *
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
28
 
3912 mejdrech 29
/** @addtogroup net_nil
3846 mejdrech 30
 *  @{
31
 */
32
 
33
/** @file
3912 mejdrech 34
 *  Hardware types according to the on-line IANA - Address Resolution Protocol (ARP) Parameters - <http://www.iana.org/assignments/arp-parameters/arp-parameters.xml>, cited January 14 2009.
3846 mejdrech 35
 *  Names similar to the linux src/include/linux/if_arp.h header file.
36
 */
37
 
38
#ifndef __NET_HW_TYPES_H__
39
#define __NET_HW_TYPES_H__
40
 
41
/** Ethernet (10Mb) hardware type.
42
 */
43
#define HW_ETHER        1
44
 
45
/** Experimental Ethernet (3Mb) hardware type.
46
 */
47
#define HW_EETHER       2
48
 
49
/** Amateur Radio AX.25 hardware type.
50
 */
51
#define HW_AX25     3
52
 
53
/** Proteon ProNET Token Ring hardware type.
54
 */
55
#define HW_PRONET       4
56
 
57
/** Chaos hardware type.
58
 */
59
#define HW_CHAOS        5
60
 
61
/** IEEE 802 Networks hardware type.
62
 */
63
#define HW_IEEE802      6
64
 
65
/** ARCNET hardware type.
66
 */
67
#define HW_ARCNET       7
68
 
69
/** Hyperchannel hardware type.
70
 */
71
#define HW_Hyperchannel     8
72
 
73
/** Lanstar hardware type.
74
 */
75
#define HW_Lanstar      9
76
 
77
/** Autonet Short Address hardware type.
78
 */
79
#define HW_ASA      10
80
 
81
/** LocalTalk hardware type.
82
 */
83
#define HW_LocalTalk        11
84
 
85
/** LocalNet (IBM PCNet or SYTEK LocalNET) hardware type.
86
 */
87
#define HW_LocalNet     12
88
 
89
/** Ultra link hardware type.
90
 */
91
#define HW_Ultra_link       13
92
 
93
/** SMDS hardware type.
94
 */
95
#define HW_SMDS     14
96
 
97
/** Frame Relay DLCI hardware type.
98
 */
99
#define HW_DLCI     15
100
 
101
/** Asynchronous Transmission Mode (ATM) hardware type.
102
 */
103
#define HW_ATM      16
104
 
105
/** HDLC hardware type.
106
 */
107
#define HW_HDLC     17
108
 
109
/** Fibre Channel hardware type.
110
 */
111
#define HW_Fibre_Channel        18
112
 
113
/** Asynchronous Transmission Mode (ATM) hardware type.
114
 */
115
#define HW_ATM2     19
116
 
117
/** Serial Line hardware type.
118
 */
119
#define HW_Serial_Line      20
120
 
121
/** Asynchronous Transmission Mode (ATM) hardware type.
122
 */
123
#define HW_ATM3     21
124
 
125
/** MIL-STD-188-220 hardware type.
126
 */
127
#define HW_MIL_STD_188_220      22
128
 
129
/** Metricom hardware type.
130
 */
131
#define HW_METRICOM     23
132
 
133
/** IEEE 1394.1995 hardware type.
134
 */
135
#define HW_IEEE1394     24
136
 
137
/** MAPOS hardware type.
138
 */
139
#define HW_MAPOS        25
140
 
141
/** Twinaxial hardware type.
142
 */
143
#define HW_Twinaxial        26
144
 
145
/** EUI-64 hardware type.
146
 */
147
#define HW_EUI64        27
148
 
149
/** HIPARP hardware type.
150
 */
151
#define HW_HIPARP       28
152
 
153
/** IP and ARP over ISO 7816-3 hardware type.
154
 */
155
#define HW_ISO_7816_3       29
156
 
157
/** ARPSec hardware type.
158
 */
159
#define HW_ARPSec       30
160
 
161
/** IPsec tunnel hardware type.
162
 */
163
#define HW_IPsec_tunnel     31
164
 
165
/** InfiniBand (TM) hardware type.
166
 */
167
#define HW_INFINIBAND       32
168
 
169
/** TIA-102 Project 25 Common Air Interface (CAI) hardware type.
170
 */
171
#define HW_CAI      33
172
 
173
/** Wiegand Interface hardware type.
174
 */
175
#define HW_Wiegand      34
176
 
177
/** Pure IP hardware type.
178
 */
179
#define HW_Pure_IP      35
180
 
181
#endif
182
 
183
/** @}
184
 */