| 55 | } |
| 56 | |
| 57 | std::shared_ptr<message> runtime_impl::create_message(bool _reliable) const { |
| 58 | auto its_message = std::make_shared<message_impl>(); |
| 59 | its_message->set_protocol_version(VSOMEIP_PROTOCOL_VERSION); |
| 60 | its_message->set_return_code(return_code_e::E_OK); |
| 61 | its_message->set_reliable(_reliable); |
| 62 | its_message->set_interface_version(DEFAULT_MAJOR); |
| 63 | return its_message; |
| 64 | } |
| 65 | |
| 66 | std::shared_ptr<message> runtime_impl::create_request(bool _reliable) const { |
| 67 | auto its_request = std::make_shared<message_impl>(); |