From: Elena Mamontova Date: Wed, 9 Mar 2016 09:24:00 +0000 (+0200) Subject: Ticket 26. The const MODULE_SETTINGS & ms parameter added to the X-Git-Tag: 2.409~174^2~1^2~24 X-Git-Url: https://git.stg.codes/stg.git/commitdiff_plain/a9b057b8c963da58cd4b40ed2cb5cc4b89bc203e Ticket 26. The const MODULE_SETTINGS & ms parameter added to the Reload() method of the class NF_CAP in the cap_nf.h plugin. --- diff --git a/projects/stargazer/plugins/capture/cap_nf/cap_nf.h b/projects/stargazer/plugins/capture/cap_nf/cap_nf.h index bcb8b743..ae0b3763 100644 --- a/projects/stargazer/plugins/capture/cap_nf/cap_nf.h +++ b/projects/stargazer/plugins/capture/cap_nf/cap_nf.h @@ -99,7 +99,7 @@ public: int Start(); int Stop(); - int Reload() { return 0; } + int Reload(const MODULE_SETTINGS & ms) { return 0; } bool IsRunning() { return runningTCP || runningUDP; } const std::string & GetStrError() const { return errorStr; } std::string GetVersion() const { return VERSION; }