blob: f49b5cf7009dde2148c86e2eae41fc7914d78c62 [file] [log] [blame]
package org.onlab.onos.net.proxyarp;
import org.onlab.onos.net.ConnectPoint;
import org.onlab.onos.net.packet.PacketContext;
import org.onlab.packet.Ethernet;
import org.onlab.packet.IpAddress;
/**
* Service for processing arp requests on behalf of applications.
*/
// TODO: move to the peer host package
public interface ProxyArpService {
/**
* Returns whether this particular ip address is known to the system.
*
* @param addr a ip address
* @return true if know, false otherwise
*/
boolean known(IpAddress addr);
/**
* 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 inPort the port the request was received on
*/
void reply(Ethernet eth, ConnectPoint inPort);
/**
* 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);
/**
* Handles a arp packet.
* Replies to arp requests and forwards request to the right place.
* @param context the packet context to handle
* @return true if handled, false otherwise.
*/
boolean handleArp(PacketContext context);
}