summaryrefslogtreecommitdiff
path: root/interface/vsomeip/enumeration_types.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'interface/vsomeip/enumeration_types.hpp')
-rw-r--r--interface/vsomeip/enumeration_types.hpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/interface/vsomeip/enumeration_types.hpp b/interface/vsomeip/enumeration_types.hpp
index a6bc315..8229a89 100644
--- a/interface/vsomeip/enumeration_types.hpp
+++ b/interface/vsomeip/enumeration_types.hpp
@@ -1,4 +1,4 @@
-// Copyright (C) 2014-2017 Bayerische Motoren Werke Aktiengesellschaft (BMW AG)
+// Copyright (C) 2014-2021 Bayerische Motoren Werke Aktiengesellschaft (BMW AG)
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
@@ -88,6 +88,13 @@ enum class reliability_type_e : uint8_t {
RT_UNKNOWN = 0xFF
};
+enum class availability_state_e : uint8_t {
+ AS_UNAVAILABLE = 0x00, // unseen
+ AS_OFFERED = 0x01, // seen, but not requested/not yet usable
+ AS_AVAILABLE = 0x02, // seen and usable
+ AS_UNKNOWN = 0xFF
+};
+
} // namespace vsomeip_v3
#endif // VSOMEIP_V3_ENUMERATION_TYPES_HPP_