git.stg.codes
/
stg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Move variables declaration to the beginning of the function (old C)
[stg.git]
/
projects
/
stargazer
/
plugins
/
capture
/
divert_freebsd
/
divert_cap.h
diff --git
a/projects/stargazer/plugins/capture/divert_freebsd/divert_cap.h
b/projects/stargazer/plugins/capture/divert_freebsd/divert_cap.h
index b463e328e093453738767a01aa1c3145980f1a33..65ee87d39404a1fdccfd28dc50b01891c25d26b4 100644
(file)
--- a/
projects/stargazer/plugins/capture/divert_freebsd/divert_cap.h
+++ b/
projects/stargazer/plugins/capture/divert_freebsd/divert_cap.h
@@
-31,8
+31,8
@@
$Date: 2009/06/23 11:32:27 $
#include <string>
#include <string>
-#include "plugin.h"
-#include "module_settings.h"
+#include "
stg/
plugin.h"
+#include "
stg/
module_settings.h"
class USERS;
class TARIFFS;
class USERS;
class TARIFFS;
@@
-48,12
+48,7
@@
public:
DIVERT_CAP();
virtual ~DIVERT_CAP() {}
DIVERT_CAP();
virtual ~DIVERT_CAP() {}
- void SetUsers(USERS *) {}
- void SetTariffs(TARIFFS *) {}
- void SetAdmins(ADMINS *) {}
void SetTraffcounter(TRAFFCOUNTER * tc) { traffCnt = tc; }
void SetTraffcounter(TRAFFCOUNTER * tc) { traffCnt = tc; }
- void SetStore(STORE *) {}
- void SetStgSettings(const SETTINGS *) {}
int Start();
int Stop();
int Start();
int Stop();
@@
-68,6
+63,9
@@
public:
uint16_t GetStopPosition() const { return 10; }
private:
uint16_t GetStopPosition() const { return 10; }
private:
+ DIVERT_CAP(const DIVERT_CAP & rvalue);
+ DIVERT_CAP & operator=(const DIVERT_CAP & rvalue);
+
static void * Run(void *);
int DivertCapOpen();
static void * Run(void *);
int DivertCapOpen();
@@
-76,8
+74,6
@@
private:
int DivertCapRead(char * buffer, int blen, char ** iface, int n);
int DivertCapClose();
int DivertCapRead(char * buffer, int blen, char ** iface, int n);
int DivertCapClose();
- int ParseIntInRange(const std::string & str, int min, int max, int * val);
-
MODULE_SETTINGS settings;
int port;
MODULE_SETTINGS settings;
int port;