From: Elena Mamontova Date: Thu, 10 Mar 2016 07:35:27 +0000 (+0200) Subject: Ticket 26. The const MODULE_SETTINGS & ms parameter added to the X-Git-Tag: 2.409~174^2~1^2~19 X-Git-Url: https://git.stg.codes/stg.git/commitdiff_plain/fcd197e48a6de7ddae042ac1bd9b26e3226bd41f Ticket 26. The const MODULE_SETTINGS & ms parameter added to the Reload() method of the class NFQ_CAP in the nfqueue.h file. --- diff --git a/projects/stargazer/plugins/capture/nfqueue/nfqueue.h b/projects/stargazer/plugins/capture/nfqueue/nfqueue.h index 87124784..60829626 100644 --- a/projects/stargazer/plugins/capture/nfqueue/nfqueue.h +++ b/projects/stargazer/plugins/capture/nfqueue/nfqueue.h @@ -51,7 +51,7 @@ public: int Start(); int Stop(); - int Reload() { return 0; } + int Reload(const MODULE_SETTINGS & ms) { return 0; } bool IsRunning() { return isRunning; } void SetSettings(const MODULE_SETTINGS & s) { settings = s; }