summaryrefslogtreecommitdiff
path: root/implementation/configuration/include/service.hpp
blob: 067dc416b6763e2cc5a102302e1eebf8ee17a5a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// Copyright (C) 2014-2015 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/.

#ifndef VSOMEIP_CFG_SERVICE_HPP
#define VSOMEIP_CFG_SERVICE_HPP

#include <memory>

#include <vsomeip/primitive_types.hpp>

namespace vsomeip {
namespace cfg {

struct event;
struct eventgroup;

struct service {
    service_t service_;
    instance_t instance_;

    uint16_t reliable_;
    uint16_t unreliable_;

    std::string multicast_address_;
    uint16_t multicast_port_;
    eventgroup_t multicast_group_;

    bool use_magic_cookies_;

    std::shared_ptr<servicegroup> group_;
    std::map<event_t, std::shared_ptr<event> > events_;
    std::map<eventgroup_t, std::shared_ptr<eventgroup> > eventgroups_;
};

} // namespace cfg
} // namespace vsomeip

#endif // VSOMEIP_CFG_SERVICE_HPP