Rev 3992 | Rev 4558 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 3912 | mejdrech | 1 | /* |
| 2 | * Copyright (c) 2009 Lukas 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 | |||
| 29 | /** @addtogroup eth |
||
| 30 | * @{ |
||
| 31 | */ |
||
| 32 | |||
| 33 | /** @file |
||
| 34 | * Ethernet protocol numbers according to the on-line IANA - Ethernet numbers - <http://www.iana.org/assignments/ethernet-numbers>, cited January 17 2009. |
||
| 35 | * Names according to the linux src/include/linux/if_ether.h header file. |
||
| 36 | */ |
||
| 37 | |||
| 38 | #ifndef __NET_ETHERNET_PROTOCOLS_H__ |
||
| 39 | #define __NET_ETHERNET_PROTOCOLS_H__ |
||
| 40 | |||
| 3992 | mejdrech | 41 | /** Ethernet minimal protocol number. |
| 4075 | mejdrech | 42 | * According to the IEEE 802.3 specification. |
| 3992 | mejdrech | 43 | */ |
| 4075 | mejdrech | 44 | #define ETH_MIN_PROTO 0x0600 /*1536*/ |
| 3992 | mejdrech | 45 | |
| 3912 | mejdrech | 46 | /** Ethernet loopback packet protocol type. |
| 47 | */ |
||
| 48 | #define ETH_P_LOOP 0x0060 |
||
| 49 | |||
| 50 | /** XEROX PUP (see 0A00) ethernet protocol type. |
||
| 51 | */ |
||
| 52 | #define ETH_P_PUP 0x0200 |
||
| 53 | |||
| 54 | /** PUP Addr Trans (see 0A01) ethernet protocol type. |
||
| 55 | */ |
||
| 56 | #define ETH_P_PUPAT 0x0201 |
||
| 57 | |||
| 58 | /** Nixdorf ethernet protocol type. |
||
| 59 | */ |
||
| 60 | #define ETH_P_Nixdorf 0x0400 |
||
| 61 | |||
| 62 | /** XEROX NS IDP ethernet protocol type. |
||
| 63 | */ |
||
| 64 | #define ETH_P_XEROX_NS_IDP 0x0600 |
||
| 65 | |||
| 66 | /** DLOG ethernet protocol type. |
||
| 67 | */ |
||
| 68 | #define ETH_P_DLOG 0x0660 |
||
| 69 | |||
| 70 | /** DLOG ethernet protocol type. |
||
| 71 | */ |
||
| 72 | #define ETH_P_DLOG2 0x0661 |
||
| 73 | |||
| 74 | /** Internet IP (IPv4) ethernet protocol type. |
||
| 75 | */ |
||
| 76 | #define ETH_P_IP 0x0800 |
||
| 77 | |||
| 78 | /** X.75 Internet ethernet protocol type. |
||
| 79 | */ |
||
| 80 | #define ETH_P_X_75 0x0801 |
||
| 81 | |||
| 82 | /** NBS Internet ethernet protocol type. |
||
| 83 | */ |
||
| 84 | #define ETH_P_NBS 0x0802 |
||
| 85 | |||
| 86 | /** ECMA Internet ethernet protocol type. |
||
| 87 | */ |
||
| 88 | #define ETH_P_ECMA 0x0803 |
||
| 89 | |||
| 90 | /** Chaosnet ethernet protocol type. |
||
| 91 | */ |
||
| 92 | #define ETH_P_Chaosnet 0x0804 |
||
| 93 | |||
| 94 | /** X.25 Level 3 ethernet protocol type. |
||
| 95 | */ |
||
| 96 | #define ETH_P_X25 0x0805 |
||
| 97 | |||
| 98 | /** ARP ethernet protocol type. |
||
| 99 | */ |
||
| 100 | #define ETH_P_ARP 0x0806 |
||
| 101 | |||
| 102 | /** XNS Compatability ethernet protocol type. |
||
| 103 | */ |
||
| 104 | #define ETH_P_XNS_Compatability 0x0807 |
||
| 105 | |||
| 106 | /** Frame Relay ARP ethernet protocol type. |
||
| 107 | */ |
||
| 108 | #define ETH_P_Frame_Relay_ARP 0x0808 |
||
| 109 | |||
| 110 | /** Symbolics Private ethernet protocol type. |
||
| 111 | */ |
||
| 112 | #define ETH_P_Symbolics_Private 0x081C |
||
| 113 | |||
| 114 | /** Xyplex ethernet protocol type. |
||
| 115 | */ |
||
| 116 | #define ETH_P_Xyplex_MIN 0x0888 |
||
| 117 | |||
| 118 | /** Xyplex ethernet protocol type. |
||
| 119 | */ |
||
| 120 | #define ETH_P_Xyplex_MAX 0x088A |
||
| 121 | |||
| 122 | /** Ungermann-Bass net debugr ethernet protocol type. |
||
| 123 | */ |
||
| 124 | #define ETH_P_Ungermann_Bass_net_debugr 0x0900 |
||
| 125 | |||
| 126 | /** Xerox IEEE802.3 PUP ethernet protocol type. |
||
| 127 | */ |
||
| 128 | #define ETH_P_IEEEPUP 0x0A00 |
||
| 129 | |||
| 130 | /** PUP Addr Trans ethernet protocol type. |
||
| 131 | */ |
||
| 132 | #define ETH_P_IEEEPUPAT 0x0A01 |
||
| 133 | |||
| 134 | /** Banyan VINES ethernet protocol type. |
||
| 135 | */ |
||
| 136 | #define ETH_P_Banyan_VINES 0x0BAD |
||
| 137 | |||
| 138 | /** VINES Loopback ethernet protocol type. |
||
| 139 | */ |
||
| 140 | #define ETH_P_VINES_Loopback 0x0BAE |
||
| 141 | |||
| 142 | /** VINES Echo ethernet protocol type. |
||
| 143 | */ |
||
| 144 | #define ETH_P_VINES_Echo 0x0BAF |
||
| 145 | |||
| 146 | /** Berkeley Trailer nego ethernet protocol type. |
||
| 147 | */ |
||
| 148 | #define ETH_P_Berkeley_Trailer_nego 0x1000 |
||
| 149 | |||
| 150 | /** Berkeley Trailer encap/IP ethernet protocol type. |
||
| 151 | */ |
||
| 152 | #define ETH_P_Berkeley_Trailer_encapIP_MIN 0x1001 |
||
| 153 | |||
| 154 | /** Berkeley Trailer encap/IP ethernet protocol type. |
||
| 155 | */ |
||
| 156 | #define ETH_P_Berkeley_Trailer_encapIP_MAX 0x100F |
||
| 157 | |||
| 158 | /** Valid Systems ethernet protocol type. |
||
| 159 | */ |
||
| 160 | #define ETH_P_Valid_Systems 0x1600 |
||
| 161 | |||
| 162 | /** PCS Basic Block Protocol ethernet protocol type. |
||
| 163 | */ |
||
| 164 | #define ETH_P_PCS_Basic_Block_Protocol 0x4242 |
||
| 165 | |||
| 166 | /** BBN Simnet ethernet protocol type. |
||
| 167 | */ |
||
| 168 | #define ETH_P_BBN_Simnet 0x5208 |
||
| 169 | |||
| 170 | /** DEC Unassigned (Exp.) ethernet protocol type. |
||
| 171 | */ |
||
| 172 | #define ETH_P_DEC 0x6000 |
||
| 173 | |||
| 174 | /** DEC MOP Dump/Load ethernet protocol type. |
||
| 175 | */ |
||
| 176 | #define ETH_P_DNA_DL 0x6001 |
||
| 177 | |||
| 178 | /** DEC MOP Remote Console ethernet protocol type. |
||
| 179 | */ |
||
| 180 | #define ETH_P_DNA_RC 0x6002 |
||
| 181 | |||
| 182 | /** DEC DECNET Phase IV Route ethernet protocol type. |
||
| 183 | */ |
||
| 184 | #define ETH_P_DNA_RT 0x6003 |
||
| 185 | |||
| 186 | /** DEC LAT ethernet protocol type. |
||
| 187 | */ |
||
| 188 | #define ETH_P_LAT 0x6004 |
||
| 189 | |||
| 190 | /** DEC Diagnostic Protocol ethernet protocol type. |
||
| 191 | */ |
||
| 192 | #define ETH_P_DIAG 0x6005 |
||
| 193 | |||
| 194 | /** DEC Customer Protocol ethernet protocol type. |
||
| 195 | */ |
||
| 196 | #define ETH_P_CUST 0x6006 |
||
| 197 | |||
| 198 | /** DEC LAVC, SCA ethernet protocol type. |
||
| 199 | */ |
||
| 200 | #define ETH_P_SCA 0x6007 |
||
| 201 | |||
| 202 | /** DEC Unassigned ethernet protocol type. |
||
| 203 | */ |
||
| 204 | #define ETH_P_DEC_Unassigned_MIN 0x6008 |
||
| 205 | |||
| 206 | /** DEC Unassigned ethernet protocol type. |
||
| 207 | */ |
||
| 208 | #define ETH_P_DEC_Unassigned_MAX 0x6009 |
||
| 209 | |||
| 210 | /** Com Corporation ethernet protocol type. |
||
| 211 | */ |
||
| 212 | #define ETH_P_Com_Corporation_MIN 0x6010 |
||
| 213 | |||
| 214 | /** Com Corporation ethernet protocol type. |
||
| 215 | */ |
||
| 216 | #define ETH_P_Com_Corporation_MAX 0x6014 |
||
| 217 | |||
| 218 | /** Trans Ether Bridging ethernet protocol type. |
||
| 219 | */ |
||
| 220 | #define ETH_P_Trans_Ether_Bridging 0x6558 |
||
| 221 | |||
| 222 | /** Raw Frame Relay ethernet protocol type. |
||
| 223 | */ |
||
| 224 | #define ETH_P_Raw_Frame_Relay 0x6559 |
||
| 225 | |||
| 226 | /** Ungermann-Bass download ethernet protocol type. |
||
| 227 | */ |
||
| 228 | #define ETH_P_Ungermann_Bass_download 0x7000 |
||
| 229 | |||
| 230 | /** Ungermann-Bass dia/loop ethernet protocol type. |
||
| 231 | */ |
||
| 232 | #define ETH_P_Ungermann_Bass_dialoop 0x7002 |
||
| 233 | |||
| 234 | /** LRT ethernet protocol type. |
||
| 235 | */ |
||
| 236 | #define ETH_P_LRT_MIN 0x7020 |
||
| 237 | |||
| 238 | /** LRT ethernet protocol type. |
||
| 239 | */ |
||
| 240 | #define ETH_P_LRT_MAX 0x7029 |
||
| 241 | |||
| 242 | /** Proteon ethernet protocol type. |
||
| 243 | */ |
||
| 244 | #define ETH_P_Proteon 0x7030 |
||
| 245 | |||
| 246 | /** Cabletron ethernet protocol type. |
||
| 247 | */ |
||
| 248 | #define ETH_P_Cabletron 0x7034 |
||
| 249 | |||
| 250 | /** Cronus VLN ethernet protocol type. |
||
| 251 | */ |
||
| 252 | #define ETH_P_Cronus_VLN 0x8003 |
||
| 253 | |||
| 254 | /** Cronus Direct ethernet protocol type. |
||
| 255 | */ |
||
| 256 | #define ETH_P_Cronus_Direct 0x8004 |
||
| 257 | |||
| 258 | /** HP Probe ethernet protocol type. |
||
| 259 | */ |
||
| 260 | #define ETH_P_HP_Probe 0x8005 |
||
| 261 | |||
| 262 | /** Nestar ethernet protocol type. |
||
| 263 | */ |
||
| 264 | #define ETH_P_Nestar 0x8006 |
||
| 265 | |||
| 266 | /** AT&T ethernet protocol type. |
||
| 267 | */ |
||
| 268 | #define ETH_P_AT_T 0x8008 |
||
| 269 | |||
| 270 | /** Excelan ethernet protocol type. |
||
| 271 | */ |
||
| 272 | #define ETH_P_Excelan 0x8010 |
||
| 273 | |||
| 274 | /** SGI diagnostics ethernet protocol type. |
||
| 275 | */ |
||
| 276 | #define ETH_P_SGI_diagnostics 0x8013 |
||
| 277 | |||
| 278 | /** SGI network games ethernet protocol type. |
||
| 279 | */ |
||
| 280 | #define ETH_P_SGI_network_games 0x8014 |
||
| 281 | |||
| 282 | /** SGI reserved ethernet protocol type. |
||
| 283 | */ |
||
| 284 | #define ETH_P_SGI_reserved 0x8015 |
||
| 285 | |||
| 286 | /** SGI bounce server ethernet protocol type. |
||
| 287 | */ |
||
| 288 | #define ETH_P_SGI_bounce_server 0x8016 |
||
| 289 | |||
| 290 | /** Apollo Domain ethernet protocol type. |
||
| 291 | */ |
||
| 292 | #define ETH_P_Apollo_Domain 0x8019 |
||
| 293 | |||
| 294 | /** Tymshare ethernet protocol type. |
||
| 295 | */ |
||
| 296 | #define ETH_P_Tymshare 0x802E |
||
| 297 | |||
| 298 | /** Tigan, Inc. ethernet protocol type. |
||
| 299 | */ |
||
| 300 | #define ETH_P_Tigan 0x802F |
||
| 301 | |||
| 302 | /** Reverse ARP ethernet protocol type. |
||
| 303 | */ |
||
| 304 | #define ETH_P_RARP 0x8035 |
||
| 305 | |||
| 306 | /** Aeonic Systems ethernet protocol type. |
||
| 307 | */ |
||
| 308 | #define ETH_P_Aeonic_Systems 0x8036 |
||
| 309 | |||
| 310 | /** DEC LANBridge ethernet protocol type. |
||
| 311 | */ |
||
| 312 | #define ETH_P_DEC_LANBridge 0x8038 |
||
| 313 | |||
| 314 | /** DEC Unassigned ethernet protocol type. |
||
| 315 | */ |
||
| 316 | #define ETH_P_DEC_Unassigned_MIN1 0x8039 |
||
| 317 | |||
| 318 | /** DEC Unassigned ethernet protocol type. |
||
| 319 | */ |
||
| 320 | #define ETH_P_DEC_Unassigned_MAX2 0x803C |
||
| 321 | |||
| 322 | /** DEC Ethernet Encryption ethernet protocol type. |
||
| 323 | */ |
||
| 324 | #define ETH_P_DEC_Ethernet_Encryption 0x803D |
||
| 325 | |||
| 326 | /** DEC Unassigned ethernet protocol type. |
||
| 327 | */ |
||
| 328 | #define ETH_P_DEC_Unassigned 0x803E |
||
| 329 | |||
| 330 | /** DEC LAN Traffic Monitor ethernet protocol type. |
||
| 331 | */ |
||
| 332 | #define ETH_P_DEC_LAN_Traffic_Monitor 0x803F |
||
| 333 | |||
| 334 | /** DEC Unassigned ethernet protocol type. |
||
| 335 | */ |
||
| 336 | #define ETH_P_DEC_Unassigned_MIN3 0x8040 |
||
| 337 | |||
| 338 | /** DEC Unassigned ethernet protocol type. |
||
| 339 | */ |
||
| 340 | #define ETH_P_DEC_Unassigned_MAX3 0x8042 |
||
| 341 | |||
| 342 | /** Planning Research Corp. ethernet protocol type. |
||
| 343 | */ |
||
| 344 | #define ETH_P_Planning_Research_Corp 0x8044 |
||
| 345 | |||
| 346 | /** AT&T ethernet protocol type. |
||
| 347 | */ |
||
| 348 | #define ETH_P_AT_T2 0x8046 |
||
| 349 | |||
| 350 | /** AT&T ethernet protocol type. |
||
| 351 | */ |
||
| 352 | #define ETH_P_AT_T3 0x8047 |
||
| 353 | |||
| 354 | /** ExperData ethernet protocol type. |
||
| 355 | */ |
||
| 356 | #define ETH_P_ExperData 0x8049 |
||
| 357 | |||
| 358 | /** Stanford V Kernel exp. ethernet protocol type. |
||
| 359 | */ |
||
| 360 | #define ETH_P_Stanford_V_Kernel_exp 0x805B |
||
| 361 | |||
| 362 | /** Stanford V Kernel prod. ethernet protocol type. |
||
| 363 | */ |
||
| 364 | #define ETH_P_Stanford_V_Kernel_prod 0x805C |
||
| 365 | |||
| 366 | /** Evans & Sutherland ethernet protocol type. |
||
| 367 | */ |
||
| 368 | #define ETH_P_Evans_Sutherland 0x805D |
||
| 369 | |||
| 370 | /** Little Machines ethernet protocol type. |
||
| 371 | */ |
||
| 372 | #define ETH_P_Little_Machines 0x8060 |
||
| 373 | |||
| 374 | /** Counterpoint Computers ethernet protocol type. |
||
| 375 | */ |
||
| 376 | #define ETH_P_Counterpoint_Computers 0x8062 |
||
| 377 | |||
| 378 | /** Univ. of Mass. @ Amherst ethernet protocol type. |
||
| 379 | */ |
||
| 380 | #define ETH_P_Univ_of_Mass 0x8065 |
||
| 381 | |||
| 382 | /** Univ. of Mass. @ Amherst ethernet protocol type. |
||
| 383 | */ |
||
| 384 | #define ETH_P_Univ_of_Mass2 0x8066 |
||
| 385 | |||
| 386 | /** Veeco Integrated Auto. ethernet protocol type. |
||
| 387 | */ |
||
| 388 | #define ETH_P_Veeco_Integrated_Auto 0x8067 |
||
| 389 | |||
| 390 | /** General Dynamics ethernet protocol type. |
||
| 391 | */ |
||
| 392 | #define ETH_P_General_Dynamics 0x8068 |
||
| 393 | |||
| 394 | /** AT&T ethernet protocol type. |
||
| 395 | */ |
||
| 396 | #define ETH_P_AT_T4 0x8069 |
||
| 397 | |||
| 398 | /** Autophon ethernet protocol type. |
||
| 399 | */ |
||
| 400 | #define ETH_P_Autophon 0x806A |
||
| 401 | |||
| 402 | /** ComDesign ethernet protocol type. |
||
| 403 | */ |
||
| 404 | #define ETH_P_ComDesign 0x806C |
||
| 405 | |||
| 406 | /** Computgraphic Corp. ethernet protocol type. |
||
| 407 | */ |
||
| 408 | #define ETH_P_Computgraphic_Corp 0x806D |
||
| 409 | |||
| 410 | /** Landmark Graphics Corp. ethernet protocol type. |
||
| 411 | */ |
||
| 412 | #define ETH_P_Landmark_Graphics_Corp_MIN 0x806E |
||
| 413 | |||
| 414 | /** Landmark Graphics Corp. ethernet protocol type. |
||
| 415 | */ |
||
| 416 | #define ETH_P_Landmark_Graphics_Corp_MAX 0x8077 |
||
| 417 | |||
| 418 | /** Matra ethernet protocol type. |
||
| 419 | */ |
||
| 420 | #define ETH_P_Matra 0x807A |
||
| 421 | |||
| 422 | /** Dansk Data Elektronik ethernet protocol type. |
||
| 423 | */ |
||
| 424 | #define ETH_P_Dansk_Data_Elektronik 0x807B |
||
| 425 | |||
| 426 | /** Merit Internodal ethernet protocol type. |
||
| 427 | */ |
||
| 428 | #define ETH_P_Merit_Internodal 0x807C |
||
| 429 | |||
| 430 | /** Vitalink Communications ethernet protocol type. |
||
| 431 | */ |
||
| 432 | #define ETH_P_Vitalink_Communications_MIN 0x807D |
||
| 433 | |||
| 434 | /** Vitalink Communications ethernet protocol type. |
||
| 435 | */ |
||
| 436 | #define ETH_P_Vitalink_Communications_MAX 0x807F |
||
| 437 | |||
| 438 | /** Vitalink TransLAN III ethernet protocol type. |
||
| 439 | */ |
||
| 440 | #define ETH_P_Vitalink_TransLAN_III 0x8080 |
||
| 441 | |||
| 442 | /** Counterpoint Computers ethernet protocol type. |
||
| 443 | */ |
||
| 444 | #define ETH_P_Counterpoint_Computers_MIN 0x8081 |
||
| 445 | |||
| 446 | /** Counterpoint Computers ethernet protocol type. |
||
| 447 | */ |
||
| 448 | #define ETH_P_Counterpoint_Computers_MAX 0x8083 |
||
| 449 | |||
| 450 | /** Appletalk ethernet protocol type. |
||
| 451 | */ |
||
| 452 | #define ETH_P_ATALK 0x809B |
||
| 453 | |||
| 454 | /** Datability ethernet protocol type. |
||
| 455 | */ |
||
| 456 | #define ETH_P_Datability_MIN 0x809C |
||
| 457 | |||
| 458 | /** Datability ethernet protocol type. |
||
| 459 | */ |
||
| 460 | #define ETH_P_Datability_MAX 0x809E |
||
| 461 | |||
| 462 | /** Spider Systems Ltd. ethernet protocol type. |
||
| 463 | */ |
||
| 464 | #define ETH_P_Spider_Systems_Ltd 0x809F |
||
| 465 | |||
| 466 | /** Nixdorf Computers ethernet protocol type. |
||
| 467 | */ |
||
| 468 | #define ETH_P_Nixdorf_Computers 0x80A3 |
||
| 469 | |||
| 470 | /** Siemens Gammasonics Inc. ethernet protocol type. |
||
| 471 | */ |
||
| 472 | #define ETH_P_Siemens_Gammasonics_Inc_MIN 0x80A4 |
||
| 473 | |||
| 474 | /** Siemens Gammasonics Inc. ethernet protocol type. |
||
| 475 | */ |
||
| 476 | #define ETH_P_Siemens_Gammasonics_Inc_MAX 0x80B3 |
||
| 477 | |||
| 478 | /** DCA Data Exchange Cluster ethernet protocol type. |
||
| 479 | */ |
||
| 480 | #define ETH_P_DCA_Data_Exchange_Cluster_MIN 0x80C0 |
||
| 481 | |||
| 482 | /** DCA Data Exchange Cluster ethernet protocol type. |
||
| 483 | */ |
||
| 484 | #define ETH_P_DCA_Data_Exchange_Cluster_MAX 0x80C3 |
||
| 485 | |||
| 486 | /** Banyan Systems ethernet protocol type. |
||
| 487 | */ |
||
| 488 | #define ETH_P_Banyan_Systems 0x80C4 |
||
| 489 | |||
| 490 | /** Banyan Systems ethernet protocol type. |
||
| 491 | */ |
||
| 492 | #define ETH_P_Banyan_Systems2 0x80C5 |
||
| 493 | |||
| 494 | /** Pacer Software ethernet protocol type. |
||
| 495 | */ |
||
| 496 | #define ETH_P_Pacer_Software 0x80C6 |
||
| 497 | |||
| 498 | /** Applitek Corporation ethernet protocol type. |
||
| 499 | */ |
||
| 500 | #define ETH_P_Applitek_Corporation 0x80C7 |
||
| 501 | |||
| 502 | /** Intergraph Corporation ethernet protocol type. |
||
| 503 | */ |
||
| 504 | #define ETH_P_Intergraph_Corporation_MIN 0x80C8 |
||
| 505 | |||
| 506 | /** Intergraph Corporation ethernet protocol type. |
||
| 507 | */ |
||
| 508 | #define ETH_P_Intergraph_Corporation_MAX 0x80CC |
||
| 509 | |||
| 510 | /** Harris Corporation ethernet protocol type. |
||
| 511 | */ |
||
| 512 | #define ETH_P_Harris_Corporation_MIN 0x80CD |
||
| 513 | |||
| 514 | /** Harris Corporation ethernet protocol type. |
||
| 515 | */ |
||
| 516 | #define ETH_P_Harris_Corporation_MAX 0x80CE |
||
| 517 | |||
| 518 | /** Taylor Instrument ethernet protocol type. |
||
| 519 | */ |
||
| 520 | #define ETH_P_Taylor_Instrument_MIN 0x80CF |
||
| 521 | |||
| 522 | /** Taylor Instrument ethernet protocol type. |
||
| 523 | */ |
||
| 524 | #define ETH_P_Taylor_Instrument_MAX 0x80D2 |
||
| 525 | |||
| 526 | /** Rosemount Corporation ethernet protocol type. |
||
| 527 | */ |
||
| 528 | #define ETH_P_Rosemount_Corporation_MIN 0x80D3 |
||
| 529 | |||
| 530 | /** Rosemount Corporation ethernet protocol type. |
||
| 531 | */ |
||
| 532 | #define ETH_P_Rosemount_Corporation_MAX 0x80D4 |
||
| 533 | |||
| 534 | /** IBM SNA Service on Ether ethernet protocol type. |
||
| 535 | */ |
||
| 536 | #define ETH_P_IBM_SNA_Service_on_Ether 0x80D5 |
||
| 537 | |||
| 538 | /** Varian Associates ethernet protocol type. |
||
| 539 | */ |
||
| 540 | #define ETH_P_Varian_Associates 0x80DD |
||
| 541 | |||
| 542 | /** Integrated Solutions TRFS ethernet protocol type. |
||
| 543 | */ |
||
| 544 | #define ETH_P_Integrated_Solutions_TRFS_MIN 0x80DE |
||
| 545 | |||
| 546 | /** Integrated Solutions TRFS ethernet protocol type. |
||
| 547 | */ |
||
| 548 | #define ETH_P_Integrated_Solutions_TRFS_MAX 0x80DF |
||
| 549 | |||
| 550 | /** Allen-Bradley ethernet protocol type. |
||
| 551 | */ |
||
| 552 | #define ETH_P_Allen_Bradley_MIN 0x80E0 |
||
| 553 | |||
| 554 | /** Allen-Bradley ethernet protocol type. |
||
| 555 | */ |
||
| 556 | #define ETH_P_Allen_Bradley_MAX 0x80E3 |
||
| 557 | |||
| 558 | /** Datability ethernet protocol type. |
||
| 559 | */ |
||
| 560 | #define ETH_P_Datability_MIN2 0x80E4 |
||
| 561 | |||
| 562 | /** Datability ethernet protocol type. |
||
| 563 | */ |
||
| 564 | #define ETH_P_Datability_MAX2 0x80F0 |
||
| 565 | |||
| 566 | /** Retix ethernet protocol type. |
||
| 567 | */ |
||
| 568 | #define ETH_P_Retix 0x80F2 |
||
| 569 | |||
| 570 | /** AppleTalk AARP (Kinetics) ethernet protocol type. |
||
| 571 | */ |
||
| 572 | #define ETH_P_AARP 0x80F3 |
||
| 573 | |||
| 574 | /** Kinetics ethernet protocol type. |
||
| 575 | */ |
||
| 576 | #define ETH_P_Kinetics_MIN 0x80F4 |
||
| 577 | |||
| 578 | /** Kinetics ethernet protocol type. |
||
| 579 | */ |
||
| 580 | #define ETH_P_Kinetics_MAX 0x80F5 |
||
| 581 | |||
| 582 | /** Apollo Computer ethernet protocol type. |
||
| 583 | */ |
||
| 584 | #define ETH_P_Apollo_Computer 0x80F7 |
||
| 585 | |||
| 586 | /** Wellfleet Communications ethernet protocol type. |
||
| 587 | */ |
||
| 588 | #define ETH_P_Wellfleet_Communications 0x80FF |
||
| 589 | |||
| 590 | /** IEEE 802.1Q VLAN-tagged frames (initially Wellfleet) ethernet protocol type. |
||
| 591 | */ |
||
| 592 | #define ETH_P_8021Q 0x8100 |
||
| 593 | |||
| 594 | /** Wellfleet Communications ethernet protocol type. |
||
| 595 | */ |
||
| 596 | #define ETH_P_Wellfleet_Communications_MIN 0x8101 |
||
| 597 | |||
| 598 | /** Wellfleet Communications ethernet protocol type. |
||
| 599 | */ |
||
| 600 | #define ETH_P_Wellfleet_Communications_MAX 0x8103 |
||
| 601 | |||
| 602 | /** Symbolics Private ethernet protocol type. |
||
| 603 | */ |
||
| 604 | #define ETH_P_Symbolics_Private_MIN 0x8107 |
||
| 605 | |||
| 606 | /** Symbolics Private ethernet protocol type. |
||
| 607 | */ |
||
| 608 | #define ETH_P_Symbolics_Private_MAX 0x8109 |
||
| 609 | |||
| 610 | /** Hayes Microcomputers ethernet protocol type. |
||
| 611 | */ |
||
| 612 | #define ETH_P_Hayes_Microcomputers 0x8130 |
||
| 613 | |||
| 614 | /** VG Laboratory Systems ethernet protocol type. |
||
| 615 | */ |
||
| 616 | #define ETH_P_VG_Laboratory_Systems 0x8131 |
||
| 617 | |||
| 618 | /** Bridge Communications ethernet protocol type. |
||
| 619 | */ |
||
| 620 | #define ETH_P_Bridge_Communications_MIN 0x8132 |
||
| 621 | |||
| 622 | /** Bridge Communications ethernet protocol type. |
||
| 623 | */ |
||
| 624 | #define ETH_P_Bridge_Communications_MAX 0x8136 |
||
| 625 | |||
| 626 | /** Novell, Inc. ethernet protocol type. |
||
| 627 | */ |
||
| 628 | #define ETH_P_Novell_Inc_MIN 0x8137 |
||
| 629 | |||
| 630 | /** Novell, Inc. ethernet protocol type. |
||
| 631 | */ |
||
| 632 | #define ETH_P_Novell_Inc_MAX 0x8138 |
||
| 633 | |||
| 634 | /** KTI ethernet protocol type. |
||
| 635 | */ |
||
| 636 | #define ETH_P_KTI_MIN 0x8139 |
||
| 637 | |||
| 638 | /** KTI ethernet protocol type. |
||
| 639 | */ |
||
| 640 | #define ETH_P_KTI_MAX 0x813D |
||
| 641 | |||
| 642 | /** Logicraft ethernet protocol type. |
||
| 643 | */ |
||
| 644 | #define ETH_P_Logicraft 0x8148 |
||
| 645 | |||
| 646 | /** Network Computing Devices ethernet protocol type. |
||
| 647 | */ |
||
| 648 | #define ETH_P_Network_Computing_Devices 0x8149 |
||
| 649 | |||
| 650 | /** Alpha Micro ethernet protocol type. |
||
| 651 | */ |
||
| 652 | #define ETH_P_Alpha_Micro 0x814A |
||
| 653 | |||
| 654 | /** SNMP ethernet protocol type. |
||
| 655 | */ |
||
| 656 | #define ETH_P_SNMP 0x814C |
||
| 657 | |||
| 658 | /** BIIN ethernet protocol type. |
||
| 659 | */ |
||
| 660 | #define ETH_P_BIIN 0x814D |
||
| 661 | |||
| 662 | /** BIIN ethernet protocol type. |
||
| 663 | */ |
||
| 664 | #define ETH_P_BIIN2 0x814E |
||
| 665 | |||
| 666 | /** Technically Elite Concept ethernet protocol type. |
||
| 667 | */ |
||
| 668 | #define ETH_P_Technically_Elite_Concept 0x814F |
||
| 669 | |||
| 670 | /** Rational Corp ethernet protocol type. |
||
| 671 | */ |
||
| 672 | #define ETH_P_Rational_Corp 0x8150 |
||
| 673 | |||
| 674 | /** Qualcomm ethernet protocol type. |
||
| 675 | */ |
||
| 676 | #define ETH_P_Qualcomm_MIN 0x8151 |
||
| 677 | |||
| 678 | /** Qualcomm ethernet protocol type. |
||
| 679 | */ |
||
| 680 | #define ETH_P_Qualcomm_MAX 0x8153 |
||
| 681 | |||
| 682 | /** Computer Protocol Pty Ltd ethernet protocol type. |
||
| 683 | */ |
||
| 684 | #define ETH_P_Computer_Protocol_Pty_Ltd_MIN 0x815C |
||
| 685 | |||
| 686 | /** Computer Protocol Pty Ltd ethernet protocol type. |
||
| 687 | */ |
||
| 688 | #define ETH_P_Computer_Protocol_Pty_Ltd_MAX 0x815E |
||
| 689 | |||
| 690 | /** Charles River Data System ethernet protocol type. |
||
| 691 | */ |
||
| 692 | #define ETH_P_Charles_River_Data_System_MIN 0x8164 |
||
| 693 | |||
| 694 | /** Charles River Data System ethernet protocol type. |
||
| 695 | */ |
||
| 696 | #define ETH_P_Charles_River_Data_System_MAX 0x8166 |
||
| 697 | |||
| 698 | /** XTP ethernet protocol type. |
||
| 699 | */ |
||
| 700 | #define ETH_P_XTP 0x817D |
||
| 701 | |||
| 702 | /** SGI/Time Warner prop. ethernet protocol type. |
||
| 703 | */ |
||
| 704 | #define ETH_P_SGITime_Warner_prop 0x817E |
||
| 705 | |||
| 706 | /** HIPPI-FP encapsulation ethernet protocol type. |
||
| 707 | */ |
||
| 708 | #define ETH_P_HIPPI_FP_encapsulation 0x8180 |
||
| 709 | |||
| 710 | /** STP, HIPPI-ST ethernet protocol type. |
||
| 711 | */ |
||
| 712 | #define ETH_P_STP_HIPPI_ST 0x8181 |
||
| 713 | |||
| 714 | /** Reserved for HIPPI-6400 ethernet protocol type. |
||
| 715 | */ |
||
| 716 | #define ETH_P_Reserved_for_HIPPI_6400 0x8182 |
||
| 717 | |||
| 718 | /** Reserved for HIPPI-6400 ethernet protocol type. |
||
| 719 | */ |
||
| 720 | #define ETH_P_Reserved_for_HIPPI_64002 0x8183 |
||
| 721 | |||
| 722 | /** Silicon Graphics prop. ethernet protocol type. |
||
| 723 | */ |
||
| 724 | #define ETH_P_Silicon_Graphics_prop_MIN 0x8184 |
||
| 725 | |||
| 726 | /** Silicon Graphics prop. ethernet protocol type. |
||
| 727 | */ |
||
| 728 | #define ETH_P_Silicon_Graphics_prop_MAX 0x818C |
||
| 729 | |||
| 730 | /** Motorola Computer ethernet protocol type. |
||
| 731 | */ |
||
| 732 | #define ETH_P_Motorola_Computer 0x818D |
||
| 733 | |||
| 734 | /** Qualcomm ethernet protocol type. |
||
| 735 | */ |
||
| 736 | #define ETH_P_Qualcomm_MIN2 0x819A |
||
| 737 | |||
| 738 | /** Qualcomm ethernet protocol type. |
||
| 739 | */ |
||
| 740 | #define ETH_P_Qualcomm_MAX2 0x81A3 |
||
| 741 | |||
| 742 | /** ARAI Bunkichi ethernet protocol type. |
||
| 743 | */ |
||
| 744 | #define ETH_P_ARAI_Bunkichi 0x81A4 |
||
| 745 | |||
| 746 | /** RAD Network Devices ethernet protocol type. |
||
| 747 | */ |
||
| 748 | #define ETH_P_RAD_Network_Devices_MIN 0x81A5 |
||
| 749 | |||
| 750 | /** RAD Network Devices ethernet protocol type. |
||
| 751 | */ |
||
| 752 | #define ETH_P_RAD_Network_Devices_MAX 0x81AE |
||
| 753 | |||
| 754 | /** Xyplex ethernet protocol type. |
||
| 755 | */ |
||
| 756 | #define ETH_P_Xyplex_MIN2 0x81B7 |
||
| 757 | |||
| 758 | /** Xyplex ethernet protocol type. |
||
| 759 | */ |
||
| 760 | #define ETH_P_Xyplex_MAX2 0x81B9 |
||
| 761 | |||
| 762 | /** Apricot Computers ethernet protocol type. |
||
| 763 | */ |
||
| 764 | #define ETH_P_Apricot_Computers_MIN 0x81CC |
||
| 765 | |||
| 766 | /** Apricot Computers ethernet protocol type. |
||
| 767 | */ |
||
| 768 | #define ETH_P_Apricot_Computers_MAX 0x81D5 |
||
| 769 | |||
| 770 | /** Artisoft ethernet protocol type. |
||
| 771 | */ |
||
| 772 | #define ETH_P_Artisoft_MIN 0x81D6 |
||
| 773 | |||
| 774 | /** Artisoft ethernet protocol type. |
||
| 775 | */ |
||
| 776 | #define ETH_P_Artisoft_MAX 0x81DD |
||
| 777 | |||
| 778 | /** Polygon ethernet protocol type. |
||
| 779 | */ |
||
| 780 | #define ETH_P_Polygon_MIN 0x81E6 |
||
| 781 | |||
| 782 | /** Polygon ethernet protocol type. |
||
| 783 | */ |
||
| 784 | #define ETH_P_Polygon_MAX 0x81EF |
||
| 785 | |||
| 786 | /** Comsat Labs ethernet protocol type. |
||
| 787 | */ |
||
| 788 | #define ETH_P_Comsat_Labs_MIN 0x81F0 |
||
| 789 | |||
| 790 | /** Comsat Labs ethernet protocol type. |
||
| 791 | */ |
||
| 792 | #define ETH_P_Comsat_Labs_MAX 0x81F2 |
||
| 793 | |||
| 794 | /** SAIC ethernet protocol type. |
||
| 795 | */ |
||
| 796 | #define ETH_P_SAIC_MIN 0x81F3 |
||
| 797 | |||
| 798 | /** SAIC ethernet protocol type. |
||
| 799 | */ |
||
| 800 | #define ETH_P_SAIC_MAX 0x81F5 |
||
| 801 | |||
| 802 | /** VG Analytical ethernet protocol type. |
||
| 803 | */ |
||
| 804 | #define ETH_P_VG_Analytical_MIN 0x81F6 |
||
| 805 | |||
| 806 | /** VG Analytical ethernet protocol type. |
||
| 807 | */ |
||
| 808 | #define ETH_P_VG_Analytical_MAX 0x81F8 |
||
| 809 | |||
| 810 | /** Quantum Software ethernet protocol type. |
||
| 811 | */ |
||
| 812 | #define ETH_P_Quantum_Software_MIN 0x8203 |
||
| 813 | |||
| 814 | /** Quantum Software ethernet protocol type. |
||
| 815 | */ |
||
| 816 | #define ETH_P_Quantum_Software_MAX 0x8205 |
||
| 817 | |||
| 818 | /** Ascom Banking Systems ethernet protocol type. |
||
| 819 | */ |
||
| 820 | #define ETH_P_Ascom_Banking_Systems_MIN 0x8221 |
||
| 821 | |||
| 822 | /** Ascom Banking Systems ethernet protocol type. |
||
| 823 | */ |
||
| 824 | #define ETH_P_Ascom_Banking_Systems_MAX 0x8222 |
||
| 825 | |||
| 826 | /** Advanced Encryption Syste ethernet protocol type. |
||
| 827 | */ |
||
| 828 | #define ETH_P_Advanced_Encryption_Syste_MIN 0x823E |
||
| 829 | |||
| 830 | /** Advanced Encryption Syste ethernet protocol type. |
||
| 831 | */ |
||
| 832 | #define ETH_P_Advanced_Encryption_Syste_MAX 0x8240 |
||
| 833 | |||
| 834 | /** Athena Programming ethernet protocol type. |
||
| 835 | */ |
||
| 836 | #define ETH_P_Athena_Programming_MIN 0x827F |
||
| 837 | |||
| 838 | /** Athena Programming ethernet protocol type. |
||
| 839 | */ |
||
| 840 | #define ETH_P_Athena_Programming_MAX 0x8282 |
||
| 841 | |||
| 842 | /** Charles River Data System ethernet protocol type. |
||
| 843 | */ |
||
| 844 | #define ETH_P_Charles_River_Data_System_MIN2 0x8263 |
||
| 845 | |||
| 846 | /** Charles River Data System ethernet protocol type. |
||
| 847 | */ |
||
| 848 | #define ETH_P_Charles_River_Data_System_MAX2 0x826A |
||
| 849 | |||
| 850 | /** Inst Ind Info Tech ethernet protocol type. |
||
| 851 | */ |
||
| 852 | #define ETH_P_Inst_Ind_Info_Tech_MIN 0x829A |
||
| 853 | |||
| 854 | /** Inst Ind Info Tech ethernet protocol type. |
||
| 855 | */ |
||
| 856 | #define ETH_P_Inst_Ind_Info_Tech_MAX 0x829B |
||
| 857 | |||
| 858 | /** Taurus Controls ethernet protocol type. |
||
| 859 | */ |
||
| 860 | #define ETH_P_Taurus_Controls_MIN 0x829C |
||
| 861 | |||
| 862 | /** Taurus Controls ethernet protocol type. |
||
| 863 | */ |
||
| 864 | #define ETH_P_Taurus_Controls_MAX 0x82AB |
||
| 865 | |||
| 866 | /** Walker Richer & Quinn ethernet protocol type. |
||
| 867 | */ |
||
| 868 | #define ETH_P_Walker_Richer_Quinn_MIN 0x82AC |
||
| 869 | |||
| 870 | /** Walker Richer & Quinn ethernet protocol type. |
||
| 871 | */ |
||
| 872 | #define ETH_P_Walker_Richer_Quinn_MAX 0x8693 |
||
| 873 | |||
| 874 | /** Idea Courier ethernet protocol type. |
||
| 875 | */ |
||
| 876 | #define ETH_P_Idea_Courier_MIN 0x8694 |
||
| 877 | |||
| 878 | /** Idea Courier ethernet protocol type. |
||
| 879 | */ |
||
| 880 | #define ETH_P_Idea_Courier_MAX 0x869D |
||
| 881 | |||
| 882 | /** Computer Network Tech ethernet protocol type. |
||
| 883 | */ |
||
| 884 | #define ETH_P_Computer_Network_Tech_MIN 0x869E |
||
| 885 | |||
| 886 | /** Computer Network Tech ethernet protocol type. |
||
| 887 | */ |
||
| 888 | #define ETH_P_Computer_Network_Tech_MAX 0x86A1 |
||
| 889 | |||
| 890 | /** Gateway Communications ethernet protocol type. |
||
| 891 | */ |
||
| 892 | #define ETH_P_Gateway_Communications_MIN 0x86A3 |
||
| 893 | |||
| 894 | /** Gateway Communications ethernet protocol type. |
||
| 895 | */ |
||
| 896 | #define ETH_P_Gateway_Communications_MAX 0x86AC |
||
| 897 | |||
| 898 | /** SECTRA ethernet protocol type. |
||
| 899 | */ |
||
| 900 | #define ETH_P_SECTRA 0x86DB |
||
| 901 | |||
| 902 | /** Delta Controls ethernet protocol type. |
||
| 903 | */ |
||
| 904 | #define ETH_P_Delta_Controls 0x86DE |
||
| 905 | |||
| 906 | /** IPv6 ethernet protocol type. |
||
| 907 | */ |
||
| 908 | #define ETH_P_IPV6 0x86DD |
||
| 909 | |||
| 910 | /** ATOMIC ethernet protocol type. |
||
| 911 | */ |
||
| 912 | #define ETH_P_ATOMIC 0x86DF |
||
| 913 | |||
| 914 | /** Landis & Gyr Powers ethernet protocol type. |
||
| 915 | */ |
||
| 916 | #define ETH_P_Landis_Gyr_Powers_MIN 0x86E0 |
||
| 917 | |||
| 918 | /** Landis & Gyr Powers ethernet protocol type. |
||
| 919 | */ |
||
| 920 | #define ETH_P_Landis_Gyr_Powers_MAX 0x86EF |
||
| 921 | |||
| 922 | /** Motorola ethernet protocol type. |
||
| 923 | */ |
||
| 924 | #define ETH_P_Motorola_MIN 0x8700 |
||
| 925 | |||
| 926 | /** Motorola ethernet protocol type. |
||
| 927 | */ |
||
| 928 | #define ETH_P_Motorola_MAX 0x8710 |
||
| 929 | |||
| 930 | /** TCP/IP Compression ethernet protocol type. |
||
| 931 | */ |
||
| 932 | #define ETH_P_TCPIP_Compression 0x876B |
||
| 933 | |||
| 934 | /** IP Autonomous Systems ethernet protocol type. |
||
| 935 | */ |
||
| 936 | #define ETH_P_IP_Autonomous_Systems 0x876C |
||
| 937 | |||
| 938 | /** Secure Data ethernet protocol type. |
||
| 939 | */ |
||
| 940 | #define ETH_P_Secure_Data 0x876D |
||
| 941 | |||
| 942 | /** PPP ethernet protocol type. |
||
| 943 | */ |
||
| 944 | #define ETH_P_PPP 0x880B |
||
| 945 | |||
| 946 | /** MPLS ethernet protocol type. |
||
| 947 | */ |
||
| 948 | #define ETH_P_MPLS_UC 0x8847 |
||
| 949 | |||
| 950 | /** MPLS with upstream-assigned label ethernet protocol type. |
||
| 951 | */ |
||
| 952 | #define ETH_P_MPLS_MC 0x8848 |
||
| 953 | |||
| 954 | /** Invisible Software ethernet protocol type. |
||
| 955 | */ |
||
| 956 | #define ETH_P_Invisible_Software_MIN 0x8A96 |
||
| 957 | |||
| 958 | /** Invisible Software ethernet protocol type. |
||
| 959 | */ |
||
| 960 | #define ETH_P_Invisible_Software_MAX 0x8A97 |
||
| 961 | |||
| 962 | /** PPPoE Discovery Stage ethernet protocol type. |
||
| 963 | */ |
||
| 964 | #define ETH_P_PPP_DISC 0x8863 |
||
| 965 | |||
| 966 | /** PPPoE Session Stage ethernet protocol type. |
||
| 967 | */ |
||
| 968 | #define ETH_P_PPP_SES 0x8864 |
||
| 969 | |||
| 970 | /** Loopback ethernet protocol type. |
||
| 971 | */ |
||
| 972 | #define ETH_P_Loopback 0x9000 |
||
| 973 | |||
| 974 | /** Com(Bridge) XNS Sys Mgmt ethernet protocol type. |
||
| 975 | */ |
||
| 976 | #define ETH_P_Com_XNS_Sys_Mgmt 0x9001 |
||
| 977 | |||
| 978 | /** Com(Bridge) TCP-IP Sys ethernet protocol type. |
||
| 979 | */ |
||
| 980 | #define ETH_P_Com_TCP_IP_Sys 0x9002 |
||
| 981 | |||
| 982 | /** Com(Bridge) loop detect ethernet protocol type. |
||
| 983 | */ |
||
| 984 | #define ETH_P_Com_loop_detect 0x9003 |
||
| 985 | |||
| 986 | /** BBN VITAL-LanBridge cache ethernet protocol type. |
||
| 987 | */ |
||
| 988 | #define ETH_P_BBN_VITAL_LanBridge_cache 0xFF00 |
||
| 989 | |||
| 990 | /** ISC Bunker Ramo ethernet protocol type. |
||
| 991 | */ |
||
| 992 | #define ETH_P_ISC_Bunker_Ramo_MIN 0xFF00 |
||
| 993 | |||
| 994 | /** ISC Bunker Ramo ethernet protocol type. |
||
| 995 | */ |
||
| 996 | #define ETH_P_ISC_Bunker_Ramo_MAX 0xFF0F |
||
| 997 | |||
| 998 | #endif |
||
| 999 | |||
| 1000 | /** @} |
||
| 1001 | */ |