Initial opendaylight infrastructure commit!!
[controller.git] / third-party / openflowj / src / main / java / org / openflow / protocol / OFEchoReply.java
1 package org.openflow.protocol;
2
3 import org.openflow.util.U16;
4
5 /**
6  * Represents an ofp_echo_reply message
7  * 
8  * @author Rob Sherwood (rob.sherwood@stanford.edu)
9  */
10
11 public class OFEchoReply extends OFEchoRequest {
12     public static int MINIMUM_LENGTH = 8;
13
14     public OFEchoReply() {
15         super();
16         this.type = OFType.ECHO_REPLY;
17         this.length = U16.t(MINIMUM_LENGTH);
18     }
19 }