Pavlin Radoslavov
Committed by Gerrit Code Review

Added IPV6 to the auto-completed EthType values.

Change-Id: Iaf394dc911b15124cccfd7da939ca180411639f0
...@@ -28,6 +28,8 @@ public enum EthType { ...@@ -28,6 +28,8 @@ public enum EthType {
28 RARP(Ethernet.TYPE_RARP), 28 RARP(Ethernet.TYPE_RARP),
29 /** IPV4. */ 29 /** IPV4. */
30 IPV4(Ethernet.TYPE_IPV4), 30 IPV4(Ethernet.TYPE_IPV4),
31 + /** IPV6. */
32 + IPV6(Ethernet.TYPE_IPV6),
31 /** LLDP. */ 33 /** LLDP. */
32 LLDP(Ethernet.TYPE_LLDP), 34 LLDP(Ethernet.TYPE_LLDP),
33 /** BSN. */ 35 /** BSN. */
......