BadVPN – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 /**
2 * @file
3 * IEEE assigned numbers
4 *
5 * @defgroup ieee IEEE assigned numbers
6 * @ingroup infrastructure
7 */
8  
9 /*
10 * Copyright (c) 2017 Dirk Ziegelmeier.
11 * All rights reserved.
12 *
13 * Redistribution and use in source and binary forms, with or without modification,
14 * are permitted provided that the following conditions are met:
15 *
16 * 1. Redistributions of source code must retain the above copyright notice,
17 * this list of conditions and the following disclaimer.
18 * 2. Redistributions in binary form must reproduce the above copyright notice,
19 * this list of conditions and the following disclaimer in the documentation
20 * and/or other materials provided with the distribution.
21 * 3. The name of the author may not be used to endorse or promote products
22 * derived from this software without specific prior written permission.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
25 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
26 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
27 * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
28 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
29 * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
30 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
31 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
32 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
33 * OF SUCH DAMAGE.
34 *
35 * This file is part of the lwIP TCP/IP stack.
36 *
37 * Author: Dirk Ziegelmeier <dziegel@gmx.de>
38 *
39 */
40  
41 #ifndef LWIP_HDR_PROT_IEEE_H
42 #define LWIP_HDR_PROT_IEEE_H
43  
44 /**
45 * @ingroup ieee
46 * A list of often ethtypes (although lwIP does not use all of them).
47 */
48 enum lwip_ieee_eth_type {
49 /** Internet protocol v4 */
50 ETHTYPE_IP = 0x0800U,
51 /** Address resolution protocol */
52 ETHTYPE_ARP = 0x0806U,
53 /** Wake on lan */
54 ETHTYPE_WOL = 0x0842U,
55 /** RARP */
56 ETHTYPE_RARP = 0x8035U,
57 /** Virtual local area network */
58 ETHTYPE_VLAN = 0x8100U,
59 /** Internet protocol v6 */
60 ETHTYPE_IPV6 = 0x86DDU,
61 /** PPP Over Ethernet Discovery Stage */
62 ETHTYPE_PPPOEDISC = 0x8863U,
63 /** PPP Over Ethernet Session Stage */
64 ETHTYPE_PPPOE = 0x8864U,
65 /** Jumbo Frames */
66 ETHTYPE_JUMBO = 0x8870U,
67 /** Process field network */
68 ETHTYPE_PROFINET = 0x8892U,
69 /** Ethernet for control automation technology */
70 ETHTYPE_ETHERCAT = 0x88A4U,
71 /** Link layer discovery protocol */
72 ETHTYPE_LLDP = 0x88CCU,
73 /** Serial real-time communication system */
74 ETHTYPE_SERCOS = 0x88CDU,
75 /** Media redundancy protocol */
76 ETHTYPE_MRP = 0x88E3U,
77 /** Precision time protocol */
78 ETHTYPE_PTP = 0x88F7U,
79 /** Q-in-Q, 802.1ad */
80 ETHTYPE_QINQ = 0x9100U
81 };
82  
83 #endif /* LWIP_HDR_PROT_IEEE_H */