]> git.stg.codes - stg.git/blobdiff - projects/stargazer/plugins/capture/divert_freebsd/divert_cap.cpp
Code deduplication
[stg.git] / projects / stargazer / plugins / capture / divert_freebsd / divert_cap.cpp
index 5d49f6924287769cfdb3d8987ae29081370cd2f5..61090de7c1997cc297991dc353f32fb0649ecb5e 100644 (file)
@@ -41,10 +41,11 @@ $Date: 2010/09/10 06:43:03 $
 #include <csignal>
 
 #include <algorithm>
 #include <csignal>
 
 #include <algorithm>
+#include <vector>
 
 
-#include "common.h"
+#include "stg/common.h"
+#include "stg/traffcounter.h"
 #include "divert_cap.h"
 #include "divert_cap.h"
-#include "traffcounter.h"
 
 #define BUFF_LEN (16384) /* max mtu -> lo=16436  TODO why?*/
 
 
 #define BUFF_LEN (16384) /* max mtu -> lo=16436  TODO why?*/
 
@@ -277,7 +278,7 @@ int DIVERT_CAP::ParseSettings()
 {
 int p;
 PARAM_VALUE pv;
 {
 int p;
 PARAM_VALUE pv;
-vector<PARAM_VALUE>::const_iterator pvi;
+std::vector<PARAM_VALUE>::const_iterator pvi;
 
 pv.param = "Port";
 pvi = std::find(settings.moduleParams.begin(), settings.moduleParams.end(), pv);
 
 pv.param = "Port";
 pvi = std::find(settings.moduleParams.begin(), settings.moduleParams.end(), pv);
@@ -299,18 +300,3 @@ port = p;
 return 0;
 }
 //-----------------------------------------------------------------------------
 return 0;
 }
 //-----------------------------------------------------------------------------
-int DIVERT_CAP::ParseIntInRange(const std::string & str, int min, int max, int * val)
-{
-if (str2x(str.c_str(), *val))
-    {
-    errorStr = "Incorrect value \'" + str + "\'.";
-    return -1;
-    }
-if (*val < min || *val > max)
-    {
-    errorStr = "Value \'" + str + "\' out of range.";
-    return -1;
-    }
-return 0;
-}
-//-----------------------------------------------------------------------------