From: rtrimana Date: Fri, 15 Mar 2019 00:56:09 +0000 (-0700) Subject: Fixing input arguments for Layer 2 detection. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=555692751dcaeec207a8c7f8ea7279f71f414159;p=pingpong.git Fixing input arguments for Layer 2 detection. --- diff --git a/Code/Projects/PacketLevelSignatureExtractor/src/main/java/edu/uci/iotproject/detection/layer2/Layer2SignatureDetector.java b/Code/Projects/PacketLevelSignatureExtractor/src/main/java/edu/uci/iotproject/detection/layer2/Layer2SignatureDetector.java index 314ce3f..b0557d4 100644 --- a/Code/Projects/PacketLevelSignatureExtractor/src/main/java/edu/uci/iotproject/detection/layer2/Layer2SignatureDetector.java +++ b/Code/Projects/PacketLevelSignatureExtractor/src/main/java/edu/uci/iotproject/detection/layer2/Layer2SignatureDetector.java @@ -52,12 +52,11 @@ public class Layer2SignatureDetector implements PacketListener, ClusterMatcherOb public static void main(String[] args) throws PcapNativeException, NotOpenException, IOException { // Parse required parameters. -// if (args.length < 7) { - if (args.length < 5) { + if (args.length < 8) { String errMsg = String.format("Usage: %s inputPcapFile onAnalysisFile offAnalysisFile onSignatureFile offSignatureFile resultsFile" + "\n inputPcapFile: the target of the detection" + -// "\n onAnalysisFile: the file that contains the ON clusters analysis" + -// "\n offAnalysisFile: the file that contains the OFF clusters analysis" + + "\n onAnalysisFile: the file that contains the ON clusters analysis" + + "\n offAnalysisFile: the file that contains the OFF clusters analysis" + "\n onSignatureFile: the file that contains the ON signature to search for" + "\n offSignatureFile: the file that contains the OFF signature to search for" + "\n resultsFile: where to write the results of the detection" +