summaryrefslogtreecommitdiff
path: root/implementation/e2e_protection/include/e2e/profile/profile_custom/protector.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'implementation/e2e_protection/include/e2e/profile/profile_custom/protector.hpp')
-rw-r--r--implementation/e2e_protection/include/e2e/profile/profile_custom/protector.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/implementation/e2e_protection/include/e2e/profile/profile_custom/protector.hpp b/implementation/e2e_protection/include/e2e/profile/profile_custom/protector.hpp
index 31b976b..a2ec5d1 100644
--- a/implementation/e2e_protection/include/e2e/profile/profile_custom/protector.hpp
+++ b/implementation/e2e_protection/include/e2e/profile/profile_custom/protector.hpp
@@ -15,18 +15,18 @@ namespace e2e {
namespace profile_custom {
class protector final : public e2e::profile_interface::protector {
- public:
+public:
protector(void) = delete;
explicit protector(const profile_config &_config) : config_(_config){};
- void protect(e2e_buffer &_buffer) override final;
+ void protect(e2e_buffer &_buffer, instance_t _instance) override final;
- private:
+private:
void write_crc(e2e_buffer &_buffer, uint32_t _computed_crc);
- private:
+private:
profile_config config_;
std::mutex protect_mutex_;
};