Added Compatibility for Switch Manager and Topology Manager
[controller.git] / opendaylight / md-sal / compatibility / sal-compatibility / src / main / java / org / opendaylight / controller / sal / compatibility / ProtocolConstants.java
1 package org.opendaylight.controller.sal.compatibility;
2
3 public class ProtocolConstants {
4     // source: http://en.wikipedia.org/wiki/Ethertype
5     public static final short ETHERNET_ARP = (short) 0x0806;
6
7     // source: http://en.wikipedia.org/wiki/List_of_IP_protocol_numbers
8     public static final byte TCP = (byte) 0x06;
9     public static final byte UDP = (byte) 0x11;
10     public static final byte SCTP = (byte) 0x84;
11
12     private ProtocolConstants() {
13
14     }
15 }