Skip to content
Snippets Groups Projects
Commit 78f3431f authored by abat's avatar abat
Browse files

Merge into master from pull request #203:

Opcodes for RARP in ARP.java (https://github.com/floodlight/floodlight/pull/203)
parents aee72933 d6d52ae0
No related branches found
No related tags found
No related merge requests found
......@@ -30,7 +30,7 @@ public interface IOFMessageListener extends IListener<OFType> {
* This is the method Floodlight uses to call listeners with OpenFlow messages
* @param sw the OpenFlow switch that sent this message
* @param msg the message
* @param cntx a floodlight message context object you can use to pass
* @param cntx a Floodlight message context object you can use to pass
* information between listeners
* @return the command to continue or stop the execution
*/
......
......@@ -31,6 +31,8 @@ public class ARP extends BasePacket {
public static short OP_REQUEST = 0x1;
public static short OP_REPLY = 0x2;
public static short OP_RARP_REQUEST = 0x3;
public static short OP_RARP_REPLY = 0x4;
protected short hardwareType;
protected short protocolType;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment