summaryrefslogtreecommitdiff
path: root/implementation/e2e_protection/src/e2e/profile/profile_custom/checker.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'implementation/e2e_protection/src/e2e/profile/profile_custom/checker.cpp')
-rw-r--r--implementation/e2e_protection/src/e2e/profile/profile_custom/checker.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/implementation/e2e_protection/src/e2e/profile/profile_custom/checker.cpp b/implementation/e2e_protection/src/e2e/profile/profile_custom/checker.cpp
index 42e1ca8..9916a2f 100644
--- a/implementation/e2e_protection/src/e2e/profile/profile_custom/checker.cpp
+++ b/implementation/e2e_protection/src/e2e/profile/profile_custom/checker.cpp
@@ -16,11 +16,15 @@ namespace e2e {
namespace profile_custom {
void profile_custom_checker::check(const e2e_buffer &_buffer,
- e2e::profile_interface::check_status_t &_generic_check_status) {
+ instance_t _instance,
+ e2e::profile_interface::check_status_t &_generic_check_status) {
+
+ (void)_instance;
+
std::lock_guard<std::mutex> lock(check_mutex_);
_generic_check_status = e2e::profile_interface::generic_check_status::E2E_ERROR;
- if (profile_custom::is_buffer_length_valid(config_, _buffer)) {
+ if (profile_custom::is_buffer_length_valid(config_, _buffer)) {
uint32_t received_crc(0);
uint32_t calculated_crc(0);
@@ -34,7 +38,6 @@ void profile_custom_checker::check(const e2e_buffer &_buffer,
<< (uint32_t) calculated_crc << " received CRC: " << (uint32_t) received_crc;
}
}
- return;
}
uint32_t profile_custom_checker::read_crc(const e2e_buffer &_buffer) const {