git.stg.codes
/
stg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Fixed invalid check of pthread_create return value.
[stg.git]
/
projects
/
stargazer
/
plugins
/
capture
/
cap_debug
/
debug_cap.h
diff --git
a/projects/stargazer/plugins/capture/cap_debug/debug_cap.h
b/projects/stargazer/plugins/capture/cap_debug/debug_cap.h
index 35bcec4737cb7dbdd790eac20b7880b8cda13fcd..d0aad7646f5177fb72128685dbcc0af828424c74 100644
(file)
--- a/
projects/stargazer/plugins/capture/cap_debug/debug_cap.h
+++ b/
projects/stargazer/plugins/capture/cap_debug/debug_cap.h
@@
-28,19
+28,19
@@
$Date: 2009/06/23 11:32:27 $
$Author: faust $
*/
$Author: faust $
*/
-#include <string>
#include <pthread.h>
#include <pthread.h>
-#include "os_int.h"
-#include "base_plugin.h"
-#include "base_settings.h"
+#include <string>
+
+#include "stg/os_int.h"
+#include "stg/plugin.h"
+#include "stg/module_settings.h"
using namespace std;
using namespace std;
-extern "C"
BASE_
PLUGIN * GetPlugin();
+extern "C" PLUGIN * GetPlugin();
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
-struct iphdr_eth
-{
+struct iphdr_eth {
uint8_t ihl:4,
version:4;
uint8_t tos;
uint8_t ihl:4,
version:4;
uint8_t tos;
@@
-56,31
+56,24
@@
struct iphdr_eth
char iface[10];
};
//-----------------------------------------------------------------------------
char iface[10];
};
//-----------------------------------------------------------------------------
-class CAP_SETTINGS//: public BASE_SETTINGS
-{
+class CAP_SETTINGS {
public:
public:
- const string
&
GetStrError() const { static string s; return s; }
- int ParseSettings(const MODULE_SETTINGS & s) { return 0; }
;
+ const string
&
GetStrError() const { static string s; return s; }
+ int ParseSettings(const MODULE_SETTINGS & s) { return 0; }
};
//-----------------------------------------------------------------------------
};
//-----------------------------------------------------------------------------
-class DEBUG_CAP :public
BASE_
PLUGIN
+class DEBUG_CAP :public PLUGIN
{
public:
DEBUG_CAP();
{
public:
DEBUG_CAP();
- virtual ~DEBUG_CAP()
{};
+ virtual ~DEBUG_CAP()
{}
- void SetUsers(USERS * u){};
- void SetTariffs(TARIFFS * t){};
- void SetAdmins(ADMINS * a){};
void SetTraffcounter(TRAFFCOUNTER * tc);
void SetTraffcounter(TRAFFCOUNTER * tc);
- void SetStore(BASE_STORE *){};
- void SetStgSettings(const SETTINGS *){};
int Start();
int Stop();
int Start();
int Stop();
- int Reload() { return 0; };
- int ParseSettings() { return 0; };
- void SetSettings(const MODULE_SETTINGS & s){};
+ int Reload() { return 0; }
+ int ParseSettings() { return 0; }
bool IsRunning();
const string & GetStrError() const;
const string GetVersion() const;
bool IsRunning();
const string & GetStrError() const;
const string GetVersion() const;
@@
-99,4
+92,3
@@
private:
TRAFFCOUNTER * traffCnt;
};
//-----------------------------------------------------------------------------
TRAFFCOUNTER * traffCnt;
};
//-----------------------------------------------------------------------------
-