26823deef9274efef17bc0d22e48fa4529e04e09
[pingpong.git] / Code / Projects / SmartPlugDetector / src / main / java / edu / uci / iotproject / detection / Layer2FlowObserver.java
1 package edu.uci.iotproject.detection;
2
3 import edu.uci.iotproject.trafficreassembly.layer2.Layer2Flow;
4 import org.pcap4j.core.PcapPacket;
5
6 /**
7  * TODO add class documentation.
8  *
9  * @author Janus Varmarken
10  */
11 public interface Layer2FlowObserver {
12
13     void onNewPacket(Layer2Flow flow, PcapPacket newPacket);
14
15 }