blob: 51d92bd764ba0031557150e355e5bfeb95ded3b1 [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 */
10 public void arpRequestNotification(byte[] arpRequest);
11}