From: Elena Mamontova Date: Wed, 9 Mar 2016 09:34:46 +0000 (+0200) Subject: Ticket 26. The const MODULE_SETTINGS & ms parameter added to the X-Git-Tag: 2.409~174^2~1^2~22 X-Git-Url: https://git.stg.codes/stg.git/commitdiff_plain/314d6747391083c89173741c610066c72a0b3b8b Ticket 26. The const MODULE_SETTINGS & ms parameter added to the Reload() method of the class BPF_CAP in the ether_cap.h plugin. --- diff --git a/projects/stargazer/plugins/capture/ether_freebsd/ether_cap.h b/projects/stargazer/plugins/capture/ether_freebsd/ether_cap.h index 76785ed2..2a9840ae 100644 --- a/projects/stargazer/plugins/capture/ether_freebsd/ether_cap.h +++ b/projects/stargazer/plugins/capture/ether_freebsd/ether_cap.h @@ -98,7 +98,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; }