summaryrefslogtreecommitdiff
path: root/implementation/configuration/include/service.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'implementation/configuration/include/service.hpp')
-rw-r--r--implementation/configuration/include/service.hpp13
1 files changed, 4 insertions, 9 deletions
diff --git a/implementation/configuration/include/service.hpp b/implementation/configuration/include/service.hpp
index 8077f8e..af84880 100644
--- a/implementation/configuration/include/service.hpp
+++ b/implementation/configuration/include/service.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/.
@@ -25,10 +25,6 @@ struct service {
uint16_t reliable_;
uint16_t unreliable_;
- major_version_t major_;
- minor_version_t minor_;
- ttl_t ttl_;
-
std::string multicast_address_;
uint16_t multicast_port_;
@@ -36,17 +32,16 @@ struct service {
// [0] = debounce_time
// [1] = retention_time
- typedef std::map<method_t, std::array<std::chrono::nanoseconds, 2>> npdu_time_configuration_t;
+ using npdu_time_configuration_t = std::map<method_t, std::array<std::chrono::nanoseconds, 2>>;
npdu_time_configuration_t debounce_times_requests_;
npdu_time_configuration_t debounce_times_responses_;
- std::shared_ptr<servicegroup> group_;
std::map<event_t, std::shared_ptr<event> > events_;
std::map<eventgroup_t, std::shared_ptr<eventgroup> > eventgroups_;
// SOME/IP-TP
- std::set<method_t> tp_segment_messages_client_to_service_;
- std::set<method_t> tp_segment_messages_service_to_client_;
+ std::map<method_t, std::pair<uint16_t, uint32_t> > tp_client_config_;
+ std::map<method_t, std::pair<uint16_t, uint32_t> > tp_service_config_;
};
} // namespace cfg