Exemple #1
0
 public DataProcessor(int processID)
 {
     this.intervalMS           = 10000; // should be removed?
     this.suspiciousThreshold  = 6;     // should be removed ?
     this.processID            = processID;
     this.updateThreshold      = 60;    // should be removed?
     this.MinPacketsPerPolling = StateManager.m_config.MinPacketsPerPolling;
     this.analysis_window      = new AnalisysWindow(
         StateManager.m_config.AnalysisWindowSize,
         StateManager.m_config.AnalysisWindowSubsetsThreshold,
         StateManager.m_config.AnalysisWindowBinCount);
     this.m_sequentialBadBehaviorFrameSize = StateManager.m_config.SequentialBadBehaviourFrameSize;
 }
Exemple #2
0
 public void Dispose()
 {
     this.analysis_window = null;
 }