Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
floodlight
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
croft1
floodlight
Commits
d6d52ae0
Commit
d6d52ae0
authored
12 years ago
by
Alex Reimers
Browse files
Options
Downloads
Patches
Plain Diff
Add RARP opcodes to ARP.java.
parent
aee72933
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/main/java/net/floodlightcontroller/core/IOFMessageListener.java
+1
-1
1 addition, 1 deletion
...ava/net/floodlightcontroller/core/IOFMessageListener.java
src/main/java/net/floodlightcontroller/packet/ARP.java
+2
-0
2 additions, 0 deletions
src/main/java/net/floodlightcontroller/packet/ARP.java
with
3 additions
and
1 deletion
src/main/java/net/floodlightcontroller/core/IOFMessageListener.java
+
1
−
1
View file @
d6d52ae0
...
...
@@ -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
f
loodlight message context object you can use to pass
* @param cntx a
F
loodlight message context object you can use to pass
* information between listeners
* @return the command to continue or stop the execution
*/
...
...
This diff is collapsed.
Click to expand it.
src/main/java/net/floodlightcontroller/packet/ARP.java
+
2
−
0
View file @
d6d52ae0
...
...
@@ -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
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment