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
tom
2014-10-02 05:31:25 -0700
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
44179d6378903ae09b6bdf45c7a567c934fbf3be
44179d63
1 parent
f5d85d49
Fixed a few javadocs.
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
core/api/src/main/java/org/onlab/onos/net/Annotations.java
core/api/src/main/java/org/onlab/onos/net/SparseAnnotations.java
core/api/src/main/java/org/onlab/onos/net/proxyarp/ProxyArpService.java
core/api/src/main/java/org/onlab/onos/net/Annotations.java
View file @
44179d6
...
...
@@ -3,7 +3,7 @@ package org.onlab.onos.net;
import
java.util.Set
;
/**
* Represents an set of simpl
y
key/value string annotations.
* Represents an set of simpl
e
key/value string annotations.
*/
public
interface
Annotations
{
...
...
core/api/src/main/java/org/onlab/onos/net/SparseAnnotations.java
View file @
44179d6
...
...
@@ -3,7 +3,8 @@ package org.onlab.onos.net;
import
java.util.Set
;
/**
* Represents an set of simply key/value string annotations.
* Represents an set of sparse key/value string annotations capable of carrying
* annotation keys tagged for removal.
*/
public
interface
SparseAnnotations
extends
Annotations
{
...
...
core/api/src/main/java/org/onlab/onos/net/proxyarp/ProxyArpService.java
View file @
44179d6
...
...
@@ -12,8 +12,7 @@ public interface ProxyArpService {
/**
* Returns whether this particular ip address is known to the system.
*
* @param addr
* a ip address
* @param addr a ip address
* @return true if know, false otherwise
*/
boolean
known
(
IpPrefix
addr
);
...
...
@@ -22,14 +21,14 @@ public interface ProxyArpService {
* Sends a reply for a given request. If the host is not known then the arp
* will be flooded at all edge ports.
*
* @param eth
* an arp request
* @param eth an arp request
*/
void
reply
(
Ethernet
eth
);
/**
* Forwards an ARP request to its destination. Floods at the edge the ARP request if the
* destination is not known.
*
* @param eth an ethernet frame containing an ARP request.
*/
void
forward
(
Ethernet
eth
);
...
...
Please
register
or
login
to post a comment