40
40
namespace vsomeip_v3 {
41
41
42
42
class event ;
43
- struct debounce_filter_t ;
43
+ struct debounce_filter_impl_t ;
44
44
45
45
class configuration {
46
46
public:
@@ -212,18 +212,18 @@ class configuration {
212
212
virtual uint32_t get_log_status_interval () const = 0;
213
213
214
214
// TTL factor
215
- using ttl_factor_t = std::uint32_t ;
216
- using ttl_map_t = std::map<service_t , std::map<instance_t , ttl_factor_t >>;
215
+ typedef std::uint32_t ttl_factor_t ;
216
+ typedef std::map<service_t , std::map<instance_t , ttl_factor_t >> ttl_map_t ;
217
217
virtual ttl_map_t get_ttl_factor_offers () const = 0;
218
218
virtual ttl_map_t get_ttl_factor_subscribes () const = 0;
219
219
220
220
// Debouncing
221
- virtual std::shared_ptr<debounce_filter_t > get_debounce (
221
+ virtual std::shared_ptr<debounce_filter_impl_t > get_debounce (
222
222
const std::string &_name,
223
223
service_t _service, instance_t _instance, event_t _event) const = 0;
224
224
225
225
// Queue size limit endpoints
226
- using endpoint_queue_limit_t = std::uint32_t ;
226
+ typedef std::uint32_t endpoint_queue_limit_t ;
227
227
virtual endpoint_queue_limit_t get_endpoint_queue_limit (
228
228
const std::string& _address, std::uint16_t _port) const = 0;
229
229
virtual endpoint_queue_limit_t get_endpoint_queue_limit_local () const = 0;
@@ -241,13 +241,13 @@ class configuration {
241
241
const boost::asio::ip::address& _address, std::uint16_t _port,
242
242
bool _reliable) const = 0;
243
243
244
- using port_range_t = std::pair<std::uint16_t , std::uint16_t >;
244
+ typedef std::pair<std::uint16_t , std::uint16_t > port_range_t ;
245
245
virtual void set_sd_acceptance_rule (
246
246
const boost::asio::ip::address &_address,
247
247
port_range_t _port_range, port_type_e _type,
248
248
const std::string &_path, bool _reliable, bool _enable, bool _default) = 0;
249
249
250
- using sd_acceptance_rules_t = std::map<
250
+ typedef std::map<
251
251
boost::asio::ip::address, // other device
252
252
std::pair<
253
253
std::string, // path to file that determines whether or not IPsec is active
@@ -259,7 +259,7 @@ class configuration {
259
259
>
260
260
>
261
261
>
262
- >;
262
+ > sd_acceptance_rules_t ;
263
263
virtual sd_acceptance_rules_t get_sd_acceptance_rules () = 0;
264
264
virtual void set_sd_acceptance_rules_active (
265
265
const boost::asio::ip::address& _address, bool _enable) = 0;
0 commit comments