Changing the mechanism to count and correlate skipped packets.
[pingpong.git] / Code / Projects / PacketLevelSignatureExtractor / src / main / java / edu / uci / iotproject / detection / ClusterMatcherObserver.java
index 9108858f1d7995e44ff65313a2f7b6dc484b40c9..d67c520b6544903eb4e64ea847df927160a1f151 100644 (file)
@@ -20,8 +20,7 @@ public interface ClusterMatcherObserver {
      * @param clusterMatcher The {@link AbstractClusterMatcher} that detected a match (i.e., classified traffic as
      *                       pertaining to its associated cluster).
      * @param match The traffic that was deemed to match the cluster associated with {@code clusterMatcher}.
-     * @param maxSkippedPackets Maximum number of skipped packets.
      */
-    void onMatch(AbstractClusterMatcher clusterMatcher, List<PcapPacket> match, int maxSkippedPackets);
+    void onMatch(AbstractClusterMatcher clusterMatcher, List<PcapPacket> match);
 
 }