diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-03-16 02:18:00 +0100 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-03-16 17:21:57 +0100 |
commit | 1ee222a7250896fc7f2e5fb1dc50a7466d81b741 (patch) | |
tree | 7f73cc373b73314962ef4c774657b0842d3f9e94 /src/diagnostic/diagnostic-message.cpp | |
parent | f3ddfa1c2c4a9ac54f129a63dc9673afdc87bb9e (diff) |
Implement check of supported diagnostic PID.
Supported boolean member about diagnostic messages is now used. When
a response is received, completed but not successful, then set the diagnostic
message as not supported and clean the request from the queue.
Subscription remains for now, not cool but will be fix soon.
Change-Id: Ia5dc78d4a770f80f144724f4df6eabd2ffd4b8cc
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'src/diagnostic/diagnostic-message.cpp')
-rw-r--r-- | src/diagnostic/diagnostic-message.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/diagnostic/diagnostic-message.cpp b/src/diagnostic/diagnostic-message.cpp index 7473e7b1..62da0dc3 100644 --- a/src/diagnostic/diagnostic-message.cpp +++ b/src/diagnostic/diagnostic-message.cpp @@ -67,6 +67,16 @@ DiagnosticResponseCallback diagnostic_message_t::get_callback() const return callback_; } +bool diagnostic_message_t::get_supported() const +{ + return supported_; +} + +void diagnostic_message_t::set_supported(bool value) +{ + supported_ = value; +} + /** * @brief Build a DiagnosticRequest struct to be passed * to diagnostic manager instance. |