Toggle navigation
Toggle navigation
This project
Loading...
Sign in
홍길동
/
onos
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Jonathan Hart
2014-11-12 15:29:21 -0800
Browse Files
Options
Browse Files
Download
Plain Diff
Committed by
Gerrit Code Review
2014-11-12 15:29:21 -0800
Commit
3db05a781d74782685e94a70563de0c148b7ab83
3db05a78
2 parents
02093df7
2e3eef3e
Merge "Compare ConnectPoints rather than Interfaces."
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
apps/sdnip/src/main/java/org/onlab/onos/sdnip/Router.java
apps/sdnip/src/main/java/org/onlab/onos/sdnip/Router.java
View file @
3db05a7
...
...
@@ -598,7 +598,7 @@ public class Router implements RouteListener {
Set
<
ConnectPoint
>
ingressPorts
=
new
HashSet
<>();
for
(
Interface
intf
:
interfaceService
.
getInterfaces
())
{
if
(!
intf
.
equals
(
egressInterface
))
{
if
(!
intf
.
connectPoint
().
equals
(
egressInterface
.
connectPoint
()
))
{
ConnectPoint
srcPort
=
intf
.
connectPoint
();
ingressPorts
.
add
(
srcPort
);
}
...
...
Please
register
or
login
to post a comment