blob: 4ec32ecb85336756dcec05662e5449e0328d6f98 [file] [log] [blame]
Jonathan Hart18ad55c2013-11-11 22:49:55 -08001package net.onrc.onos.ofcontroller.proxyarp;
2
3public interface IArpEventHandler {
4
5 /**
6 * Notify the ARP event handler that an ARP request has been received.
7 * @param id The string ID of the ARP request
8 * @param arpRequest The ARP request packet
9 */
Jonathan Hartd3003252013-11-15 09:44:46 -080010 public void arpRequestNotification(ArpMessage arpMessage);
Jonathan Hart18ad55c2013-11-11 22:49:55 -080011}