├── .clang-format ├── .git-blame-ignore-revs ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.yaml │ └── config.yml └── workflows │ └── c-cpp.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .tests-whitelist ├── AUTHORS ├── Android.bp ├── Android.mk ├── CHANGES ├── CMakeLists.txt ├── CMakePresets.json ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── config ├── vsomeip-local-security.json ├── vsomeip-local-tcp-client.json ├── vsomeip-local-tcp-service.json ├── vsomeip-local-tracing.json ├── vsomeip-local.json ├── vsomeip-tcp-client-security.json ├── vsomeip-tcp-client.json ├── vsomeip-tcp-service-security.json ├── vsomeip-tcp-service.json ├── vsomeip-udp-client-security.json ├── vsomeip-udp-client.json ├── vsomeip-udp-service-security.json ├── vsomeip-udp-service.json └── vsomeip.json ├── documentation ├── .gitignore ├── diagrams │ ├── offer_service.drawio.svg │ ├── sequence_offer_service.puml │ ├── sequence_offer_service.puml.svg │ ├── usecases_overview.drawio.svg │ └── usecases_overview.puml ├── doxygen.in ├── network-tests.md ├── readme.md ├── vsomeip.eap ├── vsomeipConfiguration.md ├── vsomeipProtocol.md └── vsomeipUserGuide.md ├── examples ├── CMakeLists.txt ├── hello_world │ ├── Android.bp │ ├── CMakeLists.txt │ ├── hello_world_client.hpp │ ├── hello_world_client_main.cpp │ ├── hello_world_service.hpp │ ├── hello_world_service_main.cpp │ ├── helloworld-local.json │ ├── readme.md │ └── readme_android ├── notify-sample.cpp ├── readme.md ├── request-sample.cpp ├── response-sample.cpp ├── routingmanagerd │ ├── CMakeLists.txt │ └── routingmanagerd.cpp ├── sample-ids.hpp └── subscribe-sample.cpp ├── exportmap.gcc ├── implementation ├── compat │ ├── message │ │ ├── include │ │ │ ├── message_base_impl.hpp │ │ │ ├── message_impl.hpp │ │ │ └── payload_impl.hpp │ │ └── src │ │ │ ├── message_base_impl.cpp │ │ │ ├── message_impl.cpp │ │ │ └── payload_impl.cpp │ └── runtime │ │ ├── include │ │ ├── application_impl.hpp │ │ └── runtime_impl.hpp │ │ └── src │ │ ├── application_impl.cpp │ │ ├── runtime.cpp │ │ └── runtime_impl.cpp ├── configuration │ ├── include │ │ ├── application_configuration.hpp │ │ ├── client.hpp │ │ ├── configuration.hpp │ │ ├── configuration_element.hpp │ │ ├── configuration_impl.hpp │ │ ├── configuration_plugin.hpp │ │ ├── configuration_plugin_impl.hpp │ │ ├── debounce_filter_impl.hpp │ │ ├── e2e.hpp │ │ ├── event.hpp │ │ ├── eventgroup.hpp │ │ ├── internal.hpp.in │ │ ├── internal_android.hpp │ │ ├── local_clients_keepalive.hpp │ │ ├── routing.hpp │ │ ├── service.hpp │ │ ├── service_instance_range.hpp │ │ ├── trace.hpp │ │ └── watchdog.hpp │ └── src │ │ ├── configuration_impl.cpp │ │ └── configuration_plugin_impl.cpp ├── e2e_protection │ ├── include │ │ ├── buffer │ │ │ └── buffer.hpp │ │ ├── crc │ │ │ └── crc.hpp │ │ ├── e2e │ │ │ └── profile │ │ │ │ ├── e2e_provider.hpp │ │ │ │ ├── e2e_provider_impl.hpp │ │ │ │ ├── profile01 │ │ │ │ ├── checker.hpp │ │ │ │ ├── profile_01.hpp │ │ │ │ └── protector.hpp │ │ │ │ ├── profile04 │ │ │ │ ├── checker.hpp │ │ │ │ ├── profile_04.hpp │ │ │ │ └── protector.hpp │ │ │ │ ├── profile05 │ │ │ │ ├── checker.hpp │ │ │ │ ├── profile_05.hpp │ │ │ │ └── protector.hpp │ │ │ │ ├── profile07 │ │ │ │ ├── checker.hpp │ │ │ │ ├── profile_07.hpp │ │ │ │ └── protector.hpp │ │ │ │ ├── profile_custom │ │ │ │ ├── checker.hpp │ │ │ │ ├── profile_custom.hpp │ │ │ │ └── protector.hpp │ │ │ │ └── profile_interface │ │ │ │ ├── checker.hpp │ │ │ │ ├── profile_interface.hpp │ │ │ │ └── protector.hpp │ │ └── e2exf │ │ │ └── config.hpp │ └── src │ │ ├── buffer │ │ └── buffer.cpp │ │ ├── crc │ │ └── crc.cpp │ │ ├── e2e │ │ └── profile │ │ │ ├── e2e_provider_impl.cpp │ │ │ ├── profile01 │ │ │ ├── checker.cpp │ │ │ ├── profile_01.cpp │ │ │ └── protector.cpp │ │ │ ├── profile04 │ │ │ ├── checker.cpp │ │ │ ├── profile_04.cpp │ │ │ └── protector.cpp │ │ │ ├── profile05 │ │ │ ├── checker.cpp │ │ │ ├── profile_05.cpp │ │ │ └── protector.cpp │ │ │ ├── profile07 │ │ │ ├── checker.cpp │ │ │ ├── profile_07.cpp │ │ │ └── protector.cpp │ │ │ └── profile_custom │ │ │ ├── checker.cpp │ │ │ ├── profile_custom.cpp │ │ │ └── protector.cpp │ │ └── e2exf │ │ └── config.cpp ├── endpoints │ ├── include │ │ ├── abstract_netlink_connector.hpp │ │ ├── abstract_socket_factory.hpp │ │ ├── asio_socket_factory.hpp │ │ ├── asio_tcp_socket.hpp │ │ ├── buffer.hpp │ │ ├── client_endpoint.hpp │ │ ├── client_endpoint_impl.hpp │ │ ├── credentials.hpp │ │ ├── endpoint.hpp │ │ ├── endpoint_definition.hpp │ │ ├── endpoint_host.hpp │ │ ├── endpoint_impl.hpp │ │ ├── endpoint_manager_base.hpp │ │ ├── endpoint_manager_impl.hpp │ │ ├── io_control_operation.hpp │ │ ├── local_client_endpoint_impl.hpp │ │ ├── local_server_endpoint_impl_receive_op.hpp │ │ ├── local_tcp_client_endpoint_impl.hpp │ │ ├── local_tcp_server_endpoint_impl.hpp │ │ ├── local_uds_client_endpoint_impl.hpp │ │ ├── local_uds_server_endpoint_impl.hpp │ │ ├── netlink_connector.hpp │ │ ├── server_endpoint.hpp │ │ ├── server_endpoint_impl.hpp │ │ ├── tcp_client_endpoint_impl.hpp │ │ ├── tcp_server_endpoint_impl.hpp │ │ ├── tcp_socket.hpp │ │ ├── tp.hpp │ │ ├── tp_message.hpp │ │ ├── tp_reassembler.hpp │ │ ├── udp_client_endpoint_impl.hpp │ │ ├── udp_server_endpoint_impl.hpp │ │ ├── udp_server_endpoint_impl_receive_op.hpp │ │ └── virtual_server_endpoint_impl.hpp │ └── src │ │ ├── abstract_socket_factory.cpp │ │ ├── asio_socket_factory.cpp │ │ ├── client_endpoint_impl.cpp │ │ ├── credentials.cpp │ │ ├── endpoint_definition.cpp │ │ ├── endpoint_impl.cpp │ │ ├── endpoint_manager_base.cpp │ │ ├── endpoint_manager_impl.cpp │ │ ├── local_client_endpoint_impl.cpp │ │ ├── local_tcp_client_endpoint_impl.cpp │ │ ├── local_tcp_server_endpoint_impl.cpp │ │ ├── local_uds_client_endpoint_impl.cpp │ │ ├── local_uds_server_endpoint_impl.cpp │ │ ├── netlink_connector.cpp │ │ ├── server_endpoint_impl.cpp │ │ ├── tcp_client_endpoint_impl.cpp │ │ ├── tcp_server_endpoint_impl.cpp │ │ ├── tp.cpp │ │ ├── tp_message.cpp │ │ ├── tp_reassembler.cpp │ │ ├── udp_client_endpoint_impl.cpp │ │ ├── udp_server_endpoint_impl.cpp │ │ └── virtual_server_endpoint_impl.cpp ├── logger │ ├── include │ │ └── logger_impl.hpp │ └── src │ │ ├── logger_impl.cpp │ │ └── message.cpp ├── message │ ├── include │ │ ├── deserializer.hpp │ │ ├── message_base_impl.hpp │ │ ├── message_header_impl.hpp │ │ ├── message_impl.hpp │ │ ├── payload_impl.hpp │ │ └── serializer.hpp │ └── src │ │ ├── deserializer.cpp │ │ ├── message_base_impl.cpp │ │ ├── message_header_impl.cpp │ │ ├── message_impl.cpp │ │ ├── payload_impl.cpp │ │ └── serializer.cpp ├── plugin │ ├── include │ │ └── plugin_manager_impl.hpp │ └── src │ │ ├── plugin_manager.cpp │ │ └── plugin_manager_impl.cpp ├── protocol │ ├── include │ │ ├── assign_client_ack_command.hpp │ │ ├── assign_client_command.hpp │ │ ├── command.hpp │ │ ├── config_command.hpp │ │ ├── deregister_application_command.hpp │ │ ├── distribute_security_policies_command.hpp │ │ ├── dummy_command.hpp │ │ ├── expire_command.hpp │ │ ├── multiple_services_command_base.hpp │ │ ├── offer_service_command.hpp │ │ ├── offered_services_request_command.hpp │ │ ├── offered_services_response_command.hpp │ │ ├── ping_command.hpp │ │ ├── pong_command.hpp │ │ ├── protocol.hpp │ │ ├── register_application_command.hpp │ │ ├── register_event.hpp │ │ ├── register_events_command.hpp │ │ ├── registered_ack_command.hpp │ │ ├── release_service_command.hpp │ │ ├── remove_security_policy_command.hpp │ │ ├── remove_security_policy_response_command.hpp │ │ ├── request_service_command.hpp │ │ ├── resend_provided_events_command.hpp │ │ ├── routing_info_command.hpp │ │ ├── routing_info_entry.hpp │ │ ├── security_policy_response_command_base.hpp │ │ ├── send_command.hpp │ │ ├── service_command_base.hpp │ │ ├── simple_command.hpp │ │ ├── stop_offer_service_command.hpp │ │ ├── subscribe_ack_command.hpp │ │ ├── subscribe_ack_command_base.hpp │ │ ├── subscribe_command.hpp │ │ ├── subscribe_command_base.hpp │ │ ├── subscribe_nack_command.hpp │ │ ├── suspend_command.hpp │ │ ├── unregister_event_command.hpp │ │ ├── unsubscribe_ack_command.hpp │ │ ├── unsubscribe_command.hpp │ │ ├── update_security_credentials_command.hpp │ │ ├── update_security_policy_command.hpp │ │ └── update_security_policy_response_command.hpp │ └── src │ │ ├── assign_client_ack_command.cpp │ │ ├── assign_client_command.cpp │ │ ├── command.cpp │ │ ├── config_command.cpp │ │ ├── deregister_application_command.cpp │ │ ├── distribute_security_policies_command.cpp │ │ ├── dummy_command.cpp │ │ ├── expire_command.cpp │ │ ├── multiple_services_command_base.cpp │ │ ├── offer_service_command.cpp │ │ ├── offered_services_request_command.cpp │ │ ├── offered_services_response_command.cpp │ │ ├── ping_command.cpp │ │ ├── pong_command.cpp │ │ ├── register_application_command.cpp │ │ ├── register_event.cpp │ │ ├── register_events_command.cpp │ │ ├── registered_ack_command.cpp │ │ ├── release_service_command.cpp │ │ ├── remove_security_policy_command.cpp │ │ ├── remove_security_policy_response_command.cpp │ │ ├── request_service_command.cpp │ │ ├── resend_provided_events_command.cpp │ │ ├── routing_info_command.cpp │ │ ├── routing_info_entry.cpp │ │ ├── security_policy_response_command_base.cpp │ │ ├── send_command.cpp │ │ ├── service_command_base.cpp │ │ ├── simple_command.cpp │ │ ├── stop_offer_service_command.cpp │ │ ├── subscribe_ack_command.cpp │ │ ├── subscribe_ack_command_base.cpp │ │ ├── subscribe_command.cpp │ │ ├── subscribe_command_base.cpp │ │ ├── subscribe_nack_command.cpp │ │ ├── suspend_command.cpp │ │ ├── unregister_event_command.cpp │ │ ├── unsubscribe_ack_command.cpp │ │ ├── unsubscribe_command.cpp │ │ ├── update_security_credentials_command.cpp │ │ ├── update_security_policy_command.cpp │ │ └── update_security_policy_response_command.cpp ├── routing │ ├── include │ │ ├── event.hpp │ │ ├── eventgroupinfo.hpp │ │ ├── function_types.hpp │ │ ├── remote_subscription.hpp │ │ ├── routing_host.hpp │ │ ├── routing_manager.hpp │ │ ├── routing_manager_adapter.hpp │ │ ├── routing_manager_base.hpp │ │ ├── routing_manager_client.hpp │ │ ├── routing_manager_host.hpp │ │ ├── routing_manager_impl.hpp │ │ ├── routing_manager_stub.hpp │ │ ├── routing_manager_stub_host.hpp │ │ ├── serviceinfo.hpp │ │ └── types.hpp │ └── src │ │ ├── event.cpp │ │ ├── eventgroupinfo.cpp │ │ ├── remote_subscription.cpp │ │ ├── routing_manager_base.cpp │ │ ├── routing_manager_client.cpp │ │ ├── routing_manager_impl.cpp │ │ ├── routing_manager_stub.cpp │ │ └── serviceinfo.cpp ├── runtime │ ├── include │ │ ├── application_impl.hpp │ │ └── runtime_impl.hpp │ └── src │ │ ├── application_impl.cpp │ │ ├── runtime.cpp │ │ └── runtime_impl.cpp ├── security │ ├── include │ │ ├── policy.hpp │ │ ├── policy_manager_impl.hpp │ │ └── security.hpp │ └── src │ │ ├── policy.cpp │ │ ├── policy_manager_impl.cpp │ │ └── security.cpp ├── service_discovery │ ├── include │ │ ├── configuration_option_impl.hpp │ │ ├── constants.hpp │ │ ├── defines.hpp │ │ ├── deserializer.hpp │ │ ├── entry_impl.hpp │ │ ├── enumeration_types.hpp │ │ ├── eventgroupentry_impl.hpp │ │ ├── ip_option_impl.hpp │ │ ├── ipv4_option_impl.hpp │ │ ├── ipv6_option_impl.hpp │ │ ├── load_balancing_option_impl.hpp │ │ ├── message_element_impl.hpp │ │ ├── message_impl.hpp │ │ ├── option_impl.hpp │ │ ├── primitive_types.hpp │ │ ├── protection_option_impl.hpp │ │ ├── remote_subscription_ack.hpp │ │ ├── request.hpp │ │ ├── runtime.hpp │ │ ├── runtime_impl.hpp │ │ ├── selective_option_impl.hpp │ │ ├── service_discovery.hpp │ │ ├── service_discovery_host.hpp │ │ ├── service_discovery_impl.hpp │ │ ├── serviceentry_impl.hpp │ │ ├── subscription.hpp │ │ └── unknown_option_impl.hpp │ └── src │ │ ├── configuration_option_impl.cpp │ │ ├── deserializer.cpp │ │ ├── entry_impl.cpp │ │ ├── eventgroupentry_impl.cpp │ │ ├── ip_option_impl.cpp │ │ ├── ipv4_option_impl.cpp │ │ ├── ipv6_option_impl.cpp │ │ ├── load_balancing_option_impl.cpp │ │ ├── message_element_impl.cpp │ │ ├── message_impl.cpp │ │ ├── option_impl.cpp │ │ ├── protection_option_impl.cpp │ │ ├── remote_subscription_ack.cpp │ │ ├── request.cpp │ │ ├── runtime_impl.cpp │ │ ├── selective_option_impl.cpp │ │ ├── service_discovery_impl.cpp │ │ ├── serviceentry_impl.cpp │ │ ├── subscription.cpp │ │ └── unknown_option_impl.cpp ├── tracing │ ├── include │ │ ├── channel_impl.hpp │ │ ├── connector_impl.hpp │ │ ├── defines.hpp │ │ ├── enumeration_types.hpp │ │ └── header.hpp │ └── src │ │ ├── channel_impl.cpp │ │ ├── connector_impl.cpp │ │ └── header.cpp └── utility │ ├── include │ ├── bithelper.hpp │ ├── byteorder.hpp │ ├── criticalsection.hpp │ ├── qnx_helper.hpp │ ├── service_instance_map.hpp │ └── utility.hpp │ └── src │ ├── criticalsection.cpp │ ├── utility.cpp │ ├── wrappers.cpp │ └── wrappers_qnx.cpp ├── interface ├── compat │ └── vsomeip │ │ ├── application.hpp │ │ ├── constants.hpp │ │ ├── defines.hpp │ │ ├── enumeration_types.hpp │ │ ├── error.hpp │ │ ├── export.hpp │ │ ├── function_types.hpp │ │ ├── handler.hpp │ │ ├── internal │ │ ├── deserializable.hpp │ │ └── serializable.hpp │ │ ├── message.hpp │ │ ├── message_base.hpp │ │ ├── payload.hpp │ │ ├── plugin.hpp │ │ ├── plugins │ │ ├── application_plugin.hpp │ │ └── pre_configuration_plugin.hpp │ │ ├── primitive_types.hpp │ │ ├── runtime.hpp │ │ ├── trace.hpp │ │ └── vsomeip.hpp └── vsomeip │ ├── application.hpp │ ├── constants.hpp │ ├── defines.hpp │ ├── deprecated.hpp │ ├── enumeration_types.hpp │ ├── error.hpp │ ├── export.hpp │ ├── function_types.hpp │ ├── handler.hpp │ ├── internal │ ├── deserializable.hpp │ ├── logger.hpp │ ├── plugin_manager.hpp │ ├── policy_manager.hpp │ └── serializable.hpp │ ├── message.hpp │ ├── message_base.hpp │ ├── payload.hpp │ ├── plugin.hpp │ ├── plugins │ ├── application_plugin.hpp │ └── pre_configuration_plugin.hpp │ ├── primitive_types.hpp │ ├── runtime.hpp │ ├── structured_types.hpp │ ├── trace.hpp │ ├── vsomeip.hpp │ └── vsomeip_sec.h ├── libvsomeip.yaml ├── test ├── CMakeLists.txt ├── bat_tests │ ├── excluded_tests.txt │ ├── sdk_vsomeip_tests.py │ ├── test-metadata.json │ ├── vsomeip_socket_path_tests.py │ └── vsomeip_system_tests.py ├── benchmark_tests │ ├── CMakeLists.txt │ ├── main.cpp │ └── security_tests │ │ ├── bm_check_credentials.cpp │ │ ├── bm_check_routing_credentials.cpp │ │ ├── bm_get_client_to_sec_client_mapping.cpp │ │ ├── bm_get_clients.cpp │ │ ├── bm_get_sec_client_to_clients_mapping.cpp │ │ ├── bm_is_client_allowed.cpp │ │ ├── bm_is_offer_allowed.cpp │ │ ├── bm_is_policy_update_allowed.cpp │ │ ├── bm_load.cpp │ │ ├── bm_load_policies.cpp │ │ ├── bm_load_security_policy_extensions.cpp │ │ ├── bm_load_security_update_whitelist.cpp │ │ ├── bm_remove_client_to_sec_client_mapping.cpp │ │ └── bm_remove_security_policy.cpp ├── common │ ├── CMakeLists.txt │ ├── examples_policies │ │ └── vsomeip │ │ │ ├── 0_0 │ │ │ └── vsomeip_security.json │ │ │ ├── 4002200_4002200 │ │ │ └── vsomeip_security.json │ │ │ ├── 4002201_4002201 │ │ │ └── vsomeip_security.json │ │ │ ├── 4002205_4002205 │ │ │ └── vsomeip_security.json │ │ │ ├── 4003013_4003011 │ │ │ └── vsomeip_security.json │ │ │ ├── 4003014_4003014 │ │ │ └── vsomeip_security.json │ │ │ ├── 4003015_4003015 │ │ │ └── vsomeip_security.json │ │ │ ├── 4003016_4003016 │ │ │ └── vsomeip_security.json │ │ │ ├── vsomeip_policy_extensions.json │ │ │ └── vsomeip_security.json │ ├── include │ │ └── common │ │ │ ├── process_manager.hpp │ │ │ ├── test_timer.hpp │ │ │ ├── utility.hpp │ │ │ └── vsomeip_app_utilities.hpp │ └── src │ │ ├── utility.cpp │ │ └── vsomeip_app_utilities.cpp ├── internal_routing_disabled_acceptance_test │ ├── CMakeLists.txt │ ├── applet.cpp │ ├── applet.hpp │ ├── client.cpp │ ├── client.hpp │ ├── config.hpp │ ├── main.cpp │ ├── server.cpp │ ├── server.hpp │ └── vsomeip.json ├── network_tests │ ├── CMakeLists.txt │ ├── application_tests │ │ ├── CMakeLists.txt │ │ ├── application_test.cpp │ │ ├── application_test_availability.cpp │ │ ├── application_test_client.cpp │ │ ├── application_test_client_availability.cpp │ │ ├── application_test_daemon.cpp │ │ ├── application_test_globals.hpp │ │ ├── application_test_multiple_init.cpp │ │ ├── application_test_service.cpp │ │ ├── application_test_single_process.cpp │ │ └── conf │ │ │ ├── application_test.json.in │ │ │ ├── application_test_availability_starter.sh.in │ │ │ ├── application_test_daemon.json.in │ │ │ ├── application_test_multiple_init.sh.in │ │ │ ├── application_test_no_dispatch_threads.json.in │ │ │ ├── application_test_no_dispatch_threads_daemon.json.in │ │ │ ├── application_test_single_process.json.in │ │ │ ├── application_test_single_process_starter.sh.in │ │ │ └── application_test_starter.sh.in │ ├── availability_handler_tests │ │ ├── CMakeLists.txt │ │ ├── availability_handler_test_client.cpp │ │ ├── availability_handler_test_globals.hpp │ │ ├── availability_handler_test_manager.cpp │ │ ├── availability_handler_test_service.cpp │ │ └── conf │ │ │ ├── availability_handler_test.json.in │ │ │ ├── availability_handler_test_client_starter.sh.in │ │ │ └── availability_handler_test_service_starter.sh.in │ ├── big_payload_tests │ │ ├── CMakeLists.txt │ │ ├── big_payload_test.md │ │ ├── big_payload_test_client.cpp │ │ ├── big_payload_test_client.hpp │ │ ├── big_payload_test_globals.hpp │ │ ├── big_payload_test_service.cpp │ │ ├── big_payload_test_service.hpp │ │ ├── conf │ │ │ ├── big_payload_test_client_local_start.sh.in │ │ │ ├── big_payload_test_external_client_start.sh.in │ │ │ ├── big_payload_test_external_service_start.sh.in │ │ │ ├── big_payload_test_external_starter.sh.in │ │ │ ├── big_payload_test_local.json.in │ │ │ ├── big_payload_test_local_limited.json.in │ │ │ ├── big_payload_test_local_queue_limited.json.in │ │ │ ├── big_payload_test_local_random.json.in │ │ │ ├── big_payload_test_local_starter.sh.in │ │ │ ├── big_payload_test_local_tcp_client.json.in │ │ │ ├── big_payload_test_local_tcp_client_limited.json.in │ │ │ ├── big_payload_test_local_tcp_client_queue_limited.json.in │ │ │ ├── big_payload_test_local_tcp_client_random.json.in │ │ │ ├── big_payload_test_local_tcp_client_start.sh.in │ │ │ ├── big_payload_test_local_tcp_service.json.in │ │ │ ├── big_payload_test_local_tcp_service_limited.json.in │ │ │ ├── big_payload_test_local_tcp_service_queue_limited.json.in │ │ │ ├── big_payload_test_local_tcp_service_random.json.in │ │ │ ├── big_payload_test_local_tcp_service_start.sh.in │ │ │ ├── big_payload_test_local_tcp_starter.sh.in │ │ │ ├── big_payload_test_service_local_start.sh.in │ │ │ ├── big_payload_test_tcp_client.json.in │ │ │ ├── big_payload_test_tcp_client_limited_general.json.in │ │ │ ├── big_payload_test_tcp_client_queue_limited_general.json.in │ │ │ ├── big_payload_test_tcp_client_queue_limited_specific.json.in │ │ │ ├── big_payload_test_tcp_client_random.json.in │ │ │ ├── big_payload_test_tcp_service.json.in │ │ │ ├── big_payload_test_tcp_service_limited_general.json.in │ │ │ ├── big_payload_test_tcp_service_queue_limited_general.json.in │ │ │ ├── big_payload_test_tcp_service_queue_limited_specific.json.in │ │ │ ├── big_payload_test_tcp_service_random.json.in │ │ │ ├── big_payload_test_udp_client.json.in │ │ │ └── big_payload_test_udp_service.json.in │ │ └── docs │ │ │ ├── big_payload_test_client.png │ │ │ ├── big_payload_test_client.puml │ │ │ ├── big_payload_test_service.png │ │ │ └── big_payload_test_service.puml │ ├── cached_event_tests │ │ ├── CMakeLists.txt │ │ ├── cached_event_test.md │ │ ├── cached_event_test_client.cpp │ │ ├── cached_event_test_globals.hpp │ │ ├── cached_event_test_service.cpp │ │ └── conf │ │ │ ├── cached_event_test_client.json.in │ │ │ ├── cached_event_test_client.sh.in │ │ │ ├── cached_event_test_service.json.in │ │ │ └── cached_event_test_service.sh.in │ ├── client_id_tests │ │ ├── CMakeLists.txt │ │ ├── client_id_test_globals.hpp │ │ ├── client_id_test_service.cpp │ │ ├── client_id_test_utility.cpp │ │ └── conf │ │ │ ├── client_id_test_diff_client_ids_diff_ports_master.json.in │ │ │ ├── client_id_test_diff_client_ids_diff_ports_slave.json.in │ │ │ ├── client_id_test_diff_client_ids_partial_same_ports_master.json.in │ │ │ ├── client_id_test_diff_client_ids_partial_same_ports_slave.json.in │ │ │ ├── client_id_test_diff_client_ids_same_ports_master.json.in │ │ │ ├── client_id_test_diff_client_ids_same_ports_slave.json.in │ │ │ ├── client_id_test_master_starter.sh.in │ │ │ ├── client_id_test_same_client_ids_diff_ports_master.json.in │ │ │ ├── client_id_test_same_client_ids_diff_ports_slave.json.in │ │ │ ├── client_id_test_same_client_ids_same_ports_master.json.in │ │ │ ├── client_id_test_same_client_ids_same_ports_slave.json.in │ │ │ ├── client_id_test_slave_starter.sh.in │ │ │ ├── client_id_test_utility.json.in │ │ │ ├── client_id_test_utility_discontinuous_masked_511.json.in │ │ │ ├── client_id_test_utility_masked_127.json.in │ │ │ ├── client_id_test_utility_masked_4095.json.in │ │ │ └── client_id_test_utility_masked_511.json.in │ ├── configuration_tests │ │ ├── CMakeLists.txt │ │ ├── conf │ │ │ └── configuration_test.json.in │ │ └── configuration_test.cpp │ ├── cpu_load_tests │ │ ├── CMakeLists.txt │ │ ├── conf │ │ │ ├── cpu_load_test_client_master.json.in │ │ │ ├── cpu_load_test_client_slave.json.in │ │ │ ├── cpu_load_test_master_starter.sh.in │ │ │ ├── cpu_load_test_service_master.json.in │ │ │ ├── cpu_load_test_service_slave.json.in │ │ │ └── cpu_load_test_slave_starter.sh.in │ │ ├── cpu_load_measurer.cpp │ │ ├── cpu_load_measurer.hpp │ │ ├── cpu_load_test_client.cpp │ │ ├── cpu_load_test_globals.hpp │ │ └── cpu_load_test_service.cpp │ ├── cyclic_event_tests │ │ ├── CMakeLists.txt │ │ ├── conf │ │ │ ├── cyclic_event_test_client.json.in │ │ │ ├── cyclic_event_test_master_starter.sh.in │ │ │ ├── cyclic_event_test_service.json.in │ │ │ ├── cyclic_event_test_slave_starter.sh.in │ │ │ └── service │ │ │ │ ├── vsomeip_events.json.in │ │ │ │ ├── vsomeip_gen.json.in │ │ │ │ └── vsomeip_std.json.in │ │ ├── cyclic_event_test.md │ │ ├── cyclic_event_test_client.cpp │ │ ├── cyclic_event_test_globals.hpp │ │ ├── cyclic_event_test_service.cpp │ │ └── docs │ │ │ ├── cyclic_event_test_client.png │ │ │ ├── cyclic_event_test_client.puml │ │ │ ├── cyclic_event_test_service.png │ │ │ └── cyclic_event_test_service.puml │ ├── debounce_callback_tests │ │ ├── CMakeLists.txt │ │ ├── conf │ │ │ ├── debounce_callback_test_client.json.in │ │ │ ├── debounce_callback_test_master_starter.sh.in │ │ │ ├── debounce_callback_test_service.json.in │ │ │ └── debounce_callback_test_slave_starter.sh.in │ │ ├── debounce_callback_test.md │ │ ├── debounce_callback_test_client.cpp │ │ ├── debounce_callback_test_client.hpp │ │ ├── debounce_callback_test_common.hpp │ │ ├── debounce_callback_test_service.cpp │ │ ├── debounce_callback_test_service.hpp │ │ └── docs │ │ │ ├── debounce_callback_test_client.png │ │ │ ├── debounce_callback_test_client.puml │ │ │ ├── debounce_callback_test_service.png │ │ │ └── debounce_callback_test_service.puml │ ├── debounce_epsilon_tests │ │ ├── CMakeLists.txt │ │ ├── conf │ │ │ ├── debounce_epsilon_test_client.json.in │ │ │ ├── debounce_epsilon_test_client.sh.in │ │ │ ├── debounce_epsilon_test_service.json.in │ │ │ └── debounce_epsilon_test_service.sh.in │ │ ├── debounce_epsilon_test.md │ │ ├── debounce_epsilon_test_client.cpp │ │ └── debounce_epsilon_test_service.cpp │ ├── debounce_filter_tests │ │ ├── CMakeLists.txt │ │ ├── conf │ │ │ ├── debounce_filter_test_client.json.in │ │ │ ├── debounce_filter_test_master_starter.sh.in │ │ │ ├── debounce_filter_test_service.json.in │ │ │ └── debounce_filter_test_slave_starter.sh.in │ │ ├── debounce_filter_test.md │ │ ├── debounce_filter_test_client.cpp │ │ ├── debounce_filter_test_client.hpp │ │ ├── debounce_filter_test_common.hpp │ │ ├── debounce_filter_test_service.cpp │ │ ├── debounce_filter_test_service.hpp │ │ └── docs │ │ │ ├── debounce_filter_test_client.png │ │ │ ├── debounce_filter_test_client.puml │ │ │ ├── debounce_filter_test_service.png │ │ │ └── debounce_filter_test_service.puml │ ├── debounce_frequency_tests │ │ ├── CMakeLists.txt │ │ ├── conf │ │ │ ├── debounce_frequency_test_client.json.in │ │ │ ├── debounce_frequency_test_master_starter.sh.in │ │ │ ├── debounce_frequency_test_service.json.in │ │ │ └── debounce_frequency_test_slave_starter.sh.in │ │ ├── debounce_frequency_test.md │ │ ├── debounce_frequency_test_client.cpp │ │ ├── debounce_frequency_test_client.hpp │ │ ├── debounce_frequency_test_common.hpp │ │ ├── debounce_frequency_test_service.cpp │ │ ├── debounce_frequency_test_service.hpp │ │ └── docs │ │ │ ├── debounce_frequency_test_client.png │ │ │ ├── debounce_frequency_test_client.puml │ │ │ ├── debounce_frequency_test_service.png │ │ │ └── debounce_frequency_test_service.puml │ ├── debounce_tests │ │ ├── CMakeLists.txt │ │ ├── conf │ │ │ ├── debounce_test_client.json.in │ │ │ ├── debounce_test_master_starter.sh.in │ │ │ ├── debounce_test_service.json.in │ │ │ └── debounce_test_slave_starter.sh.in │ │ ├── debounce_test.md │ │ ├── debounce_test_client.cpp │ │ ├── debounce_test_client.hpp │ │ ├── debounce_test_common.hpp │ │ ├── debounce_test_service.cpp │ │ ├── debounce_test_service.hpp │ │ └── docs │ │ │ ├── debounce_test_client.png │ │ │ ├── debounce_test_client.puml │ │ │ ├── debounce_test_service.png │ │ │ └── debounce_test_service.puml │ ├── e2e_tests │ │ ├── CMakeLists.txt │ │ ├── conf │ │ │ ├── e2e_profile_04_test_client_external.json.in │ │ │ ├── e2e_profile_04_test_external_master_start.sh.in │ │ │ ├── e2e_profile_04_test_external_slave_start.sh.in │ │ │ ├── e2e_profile_04_test_service_external.json.in │ │ │ ├── e2e_profile_07_test_client_external.json.in │ │ │ ├── e2e_profile_07_test_external_master_start.sh.in │ │ │ ├── e2e_profile_07_test_external_slave_start.sh.in │ │ │ ├── e2e_profile_07_test_service_external.json.in │ │ │ ├── e2e_test_client_external.json.in │ │ │ ├── e2e_test_external_master_start.sh.in │ │ │ ├── e2e_test_external_slave_start.sh.in │ │ │ └── e2e_test_service_external.json.in │ │ ├── e2e_profile_04_test_client.cpp │ │ ├── e2e_profile_04_test_client.hpp │ │ ├── e2e_profile_04_test_common.hpp │ │ ├── e2e_profile_04_test_service.cpp │ │ ├── e2e_profile_04_test_service.hpp │ │ ├── e2e_profile_07_test_client.cpp │ │ ├── e2e_profile_07_test_client.hpp │ │ ├── e2e_profile_07_test_common.hpp │ │ ├── e2e_profile_07_test_service.cpp │ │ ├── e2e_profile_07_test_service.hpp │ │ ├── e2e_test_client.cpp │ │ ├── e2e_test_client.hpp │ │ ├── e2e_test_service.cpp │ │ └── e2e_test_service.hpp │ ├── event_tests │ │ ├── CMakeLists.txt │ │ ├── conf │ │ │ ├── event_test_master.json.in │ │ │ ├── event_test_master_starter.sh.in │ │ │ ├── event_test_slave_starter.sh.in │ │ │ ├── event_test_slave_tcp.json.in │ │ │ └── event_test_slave_udp.json.in │ │ ├── docs │ │ │ ├── event_test_client.png │ │ │ ├── event_test_client.puml │ │ │ ├── event_test_service.png │ │ │ └── event_test_service.puml │ │ ├── event_test.md │ │ ├── event_test_client.cpp │ │ ├── event_test_globals.hpp │ │ └── event_test_service.cpp │ ├── fake_socket_tests │ │ ├── CMakeLists.txt │ │ ├── conf │ │ │ └── multiple_client_one_process.json.in │ │ ├── helpers │ │ │ ├── app.cpp │ │ │ ├── app.hpp │ │ │ ├── attribute_recorder.hpp │ │ │ ├── base_fake_socket_fixture.cpp │ │ │ ├── base_fake_socket_fixture.hpp │ │ │ ├── command_message.cpp │ │ │ ├── command_message.hpp │ │ │ ├── fake_netlink_connector.hpp │ │ │ ├── fake_socket_factory.hpp │ │ │ ├── fake_tcp_socket.hpp │ │ │ ├── fake_tcp_socket_handle.cpp │ │ │ ├── fake_tcp_socket_handle.hpp │ │ │ ├── service_state.cpp │ │ │ ├── service_state.hpp │ │ │ ├── socket_manager.cpp │ │ │ ├── socket_manager.hpp │ │ │ ├── test_logging.hpp │ │ │ ├── to_string.cpp │ │ │ └── to_string.hpp │ │ ├── main.cpp │ │ └── test_connection_restoration.cpp │ ├── header_factory_tests │ │ ├── CMakeLists.txt │ │ ├── conf │ │ │ ├── header_factory_test_client.json.in │ │ │ ├── header_factory_test_client_start.sh.in │ │ │ ├── header_factory_test_send_receive_starter.sh.in │ │ │ ├── header_factory_test_service.json.in │ │ │ └── header_factory_test_service_start.sh.in │ │ ├── header_factory_test.cpp │ │ ├── header_factory_test_client.cpp │ │ ├── header_factory_test_client.hpp │ │ ├── header_factory_test_service.cpp │ │ └── header_factory_test_service.hpp │ ├── hostname_tests │ │ ├── CMakeLists.txt │ │ ├── conf │ │ │ ├── hostname_test_client.json.in │ │ │ ├── hostname_test_service.json.in │ │ │ └── hostname_test_starter.sh.in │ │ ├── docs │ │ │ ├── hostname_test.png │ │ │ └── hostname_test.puml │ │ ├── hostname_test.md │ │ ├── hostname_test_client.cpp │ │ ├── hostname_test_globals.hpp │ │ └── hostname_test_service.cpp │ ├── initial_event_tests │ │ ├── CMakeLists.txt │ │ ├── conf │ │ │ ├── initial_event_boardnet_test_master.json.in │ │ │ ├── initial_event_boardnet_test_slave.json.in │ │ │ ├── initial_event_boardnet_test_slave_starter.sh.in │ │ │ ├── initial_event_test_diff_client_ids_diff_ports_master.json.in │ │ │ ├── initial_event_test_diff_client_ids_diff_ports_master_tcp.json.in │ │ │ ├── initial_event_test_diff_client_ids_diff_ports_master_udp.json.in │ │ │ ├── initial_event_test_diff_client_ids_diff_ports_same_service_id_master.json.in │ │ │ ├── initial_event_test_diff_client_ids_diff_ports_same_service_id_slave.json.in │ │ │ ├── initial_event_test_diff_client_ids_diff_ports_slave.json.in │ │ │ ├── initial_event_test_diff_client_ids_diff_ports_slave_tcp.json.in │ │ │ ├── initial_event_test_diff_client_ids_diff_ports_slave_udp.json.in │ │ │ ├── initial_event_test_diff_client_ids_partial_same_ports_master.json.in │ │ │ ├── initial_event_test_diff_client_ids_partial_same_ports_slave.json.in │ │ │ ├── initial_event_test_diff_client_ids_same_ports_master.json.in │ │ │ ├── initial_event_test_diff_client_ids_same_ports_master_tcp.json.in │ │ │ ├── initial_event_test_diff_client_ids_same_ports_master_udp.json.in │ │ │ ├── initial_event_test_diff_client_ids_same_ports_slave.json.in │ │ │ ├── initial_event_test_diff_client_ids_same_ports_slave_tcp.json.in │ │ │ ├── initial_event_test_diff_client_ids_same_ports_slave_udp.json.in │ │ │ ├── initial_event_test_master_starter.sh.in │ │ │ ├── initial_event_test_master_starter_qnx.sh.in │ │ │ ├── initial_event_test_same_client_ids_diff_ports_master.json.in │ │ │ ├── initial_event_test_same_client_ids_diff_ports_slave.json.in │ │ │ ├── initial_event_test_same_client_ids_same_ports_master.json.in │ │ │ ├── initial_event_test_same_client_ids_same_ports_slave.json.in │ │ │ └── initial_event_test_slave_starter.sh.in │ │ ├── docs │ │ │ ├── boardnet_initial_event.png │ │ │ └── boardnet_initial_event.puml │ │ ├── initial_event_boardnet_test.md │ │ ├── initial_event_boardnet_test_client.cpp │ │ ├── initial_event_boardnet_test_manager.cpp │ │ ├── initial_event_test_availability_checker.cpp │ │ ├── initial_event_test_client.cpp │ │ ├── initial_event_test_globals.hpp │ │ ├── initial_event_test_service.cpp │ │ └── initial_event_test_stop_service.cpp │ ├── lazy_load_tests │ │ ├── CMakeLists.txt │ │ ├── conf │ │ │ ├── lazy_load_test_start.sh.in │ │ │ └── vsomeip │ │ │ │ ├── lazy_load_test_config.json.in │ │ │ │ ├── vsomeip_ext │ │ │ │ └── 1_1 │ │ │ │ │ └── vsomeip_security.json.in │ │ │ │ └── vsomeip_policy_extensions.json.in │ │ ├── lazy_load_test_client.cpp │ │ ├── lazy_load_test_client.hpp │ │ ├── lazy_load_test_lazy_client.cpp │ │ ├── lazy_load_test_lazy_client.hpp │ │ ├── lazy_load_test_service.cpp │ │ ├── lazy_load_test_service.hpp │ │ └── readme │ ├── magic_cookies_tests │ │ ├── CMakeLists.txt │ │ ├── conf │ │ │ ├── magic_cookies_test_client.json.in │ │ │ ├── magic_cookies_test_client_start.sh.in │ │ │ ├── magic_cookies_test_service.json.in │ │ │ ├── magic_cookies_test_service_start.sh.in │ │ │ └── magic_cookies_test_starter.sh.in │ │ ├── magic_cookies_test_client.cpp │ │ └── magic_cookies_test_service.cpp │ ├── malicious_data_tests │ │ ├── CMakeLists.txt │ │ ├── conf │ │ │ ├── malicious_data_test_master.json.in │ │ │ └── malicious_data_test_master_starter.sh.in │ │ ├── malicious_data_test_globals.hpp │ │ ├── malicious_data_test_msg_sender.cpp │ │ └── malicious_data_test_service.cpp │ ├── memory_tests │ │ ├── CMakeLists.txt │ │ ├── conf │ │ │ ├── memory_test_client.json.in │ │ │ ├── memory_test_master_starter.sh.in │ │ │ ├── memory_test_service.json.in │ │ │ └── memory_test_slave_starter.sh.in │ │ ├── memory_test_client.cpp │ │ ├── memory_test_client.hpp │ │ ├── memory_test_common.hpp │ │ ├── memory_test_service.cpp │ │ └── memory_test_service.hpp │ ├── multicast_group_tests │ │ ├── CMakeLists.txt │ │ ├── conf │ │ │ ├── multicast_group_test_client.json.in │ │ │ ├── multicast_group_test_client_starter.sh.in │ │ │ ├── multicast_group_test_service.json.in │ │ │ └── multicast_group_test_service_starter.sh.in │ │ ├── docs │ │ │ ├── multicast_group_test_service_consumers.png │ │ │ ├── multicast_group_test_service_consumers.puml │ │ │ ├── multicast_group_test_service_provider.png │ │ │ └── multicast_group_test_service_provider.puml │ │ ├── multicast_group_test.md │ │ ├── multicast_group_test_first_client.cpp │ │ ├── multicast_group_test_globals.hpp │ │ ├── multicast_group_test_second_client.cpp │ │ └── multicast_group_test_service.cpp │ ├── npdu_tests │ │ ├── CMakeLists.txt │ │ ├── conf │ │ │ ├── npdu_test_client_no_npdu.json.in │ │ │ ├── npdu_test_client_no_npdu_start.sh.in │ │ │ ├── npdu_test_client_npdu.json.in │ │ │ ├── npdu_test_client_npdu_start.sh.in │ │ │ ├── npdu_test_service_no_npdu.json.in │ │ │ ├── npdu_test_service_no_npdu_start.sh.in │ │ │ ├── npdu_test_service_npdu.json.in │ │ │ ├── npdu_test_service_npdu_start.sh.in │ │ │ └── npdu_test_starter.sh.in │ │ ├── npdu_test_client.cpp │ │ ├── npdu_test_client.hpp │ │ ├── npdu_test_globals.hpp │ │ ├── npdu_test_rmd.cpp │ │ ├── npdu_test_rmd.hpp │ │ ├── npdu_test_service.cpp │ │ └── npdu_test_service.hpp │ ├── offer_stop_offer_test │ │ ├── CMakeLists.txt │ │ ├── applications │ │ │ ├── client.cpp │ │ │ ├── client.hpp │ │ │ ├── service.cpp │ │ │ ├── service.hpp │ │ │ └── service_ids.hpp │ │ ├── conf │ │ │ ├── offer_stop_offer_test_client.json.in │ │ │ ├── offer_stop_offer_test_client_starter.sh.in │ │ │ ├── offer_stop_offer_test_service.json.in │ │ │ └── offer_stop_offer_test_service_starter.sh.in │ │ ├── docs │ │ │ ├── offer_stop_offer_test_client.png │ │ │ ├── offer_stop_offer_test_client.puml │ │ │ ├── offer_stop_offer_test_service.png │ │ │ └── offer_stop_offer_test_service.puml │ │ ├── offer_stop_offer_test.md │ │ ├── offer_stop_offer_test_client.cpp │ │ ├── offer_stop_offer_test_helper.hpp │ │ └── offer_stop_offer_test_service.cpp │ ├── offer_tests │ │ ├── CMakeLists.txt │ │ ├── conf │ │ │ ├── offer_test_big_sd_msg_master.json.in │ │ │ ├── offer_test_big_sd_msg_master_starter.sh.in │ │ │ ├── offer_test_big_sd_msg_slave.json.in │ │ │ ├── offer_test_big_sd_msg_slave_starter.sh.in │ │ │ ├── offer_test_external_master.json.in │ │ │ ├── offer_test_external_master_starter.sh.in │ │ │ ├── offer_test_external_slave.json.in │ │ │ ├── offer_test_external_slave_starter.sh.in │ │ │ ├── offer_test_local.json.in │ │ │ ├── offer_test_local_starter.sh.in │ │ │ ├── offer_test_multiple_offerings.json.in │ │ │ └── offer_test_multiple_offerings_starter.sh.in │ │ ├── offer_test_big_sd_msg_client.cpp │ │ ├── offer_test_big_sd_msg_service.cpp │ │ ├── offer_test_client.cpp │ │ ├── offer_test_external_sd_msg_sender.cpp │ │ ├── offer_test_globals.hpp │ │ ├── offer_test_local.md │ │ ├── offer_test_multiple_offerings.cpp │ │ ├── offer_test_service.cpp │ │ └── offer_test_service_external.cpp │ ├── offered_services_info_tests │ │ ├── CMakeLists.txt │ │ ├── conf │ │ │ ├── offered_services_info_test_local.json.in │ │ │ └── offered_services_info_test_local_starter.sh.in │ │ ├── docs │ │ │ ├── offered_services_info_test.png │ │ │ └── offered_services_info_test.puml │ │ ├── offered_services_info_test.md │ │ ├── offered_services_info_test_client.cpp │ │ ├── offered_services_info_test_globals.hpp │ │ └── offered_services_info_test_service.cpp │ ├── payload_tests │ │ ├── CMakeLists.txt │ │ ├── conf │ │ │ ├── external_local_payload_test_client_external.json.in │ │ │ ├── external_local_payload_test_client_external_start.sh.in │ │ │ ├── external_local_payload_test_client_external_starter.sh.in │ │ │ ├── external_local_payload_test_client_local.json.in │ │ │ ├── external_local_payload_test_client_local_and_external_starter.sh.in │ │ │ ├── external_local_payload_test_client_local_start.sh.in │ │ │ ├── external_local_payload_test_client_local_starter.sh.in │ │ │ ├── external_local_payload_test_service.json.in │ │ │ ├── external_local_payload_test_service_client_external_start.sh.in │ │ │ ├── external_local_payload_test_service_start.sh.in │ │ │ ├── local_payload_test_client.json.in │ │ │ ├── local_payload_test_client_start.sh.in │ │ │ ├── local_payload_test_huge_payload_starter.sh.in │ │ │ ├── local_payload_test_service.json.in │ │ │ ├── local_payload_test_service_start.sh.in │ │ │ └── local_payload_test_starter.sh.in │ │ ├── payload_test_client.cpp │ │ ├── payload_test_client.hpp │ │ ├── payload_test_service.cpp │ │ ├── payload_test_service.hpp │ │ ├── stopwatch.cpp │ │ └── stopwatch.hpp │ ├── pending_subscription_tests │ │ ├── CMakeLists.txt │ │ ├── conf │ │ │ ├── pending_subscription_test_master.json.in │ │ │ └── pending_subscription_test_master_starter.sh.in │ │ ├── pending_subscription_test_globals.hpp │ │ ├── pending_subscription_test_sd_msg_sender.cpp │ │ └── pending_subscription_test_service.cpp │ ├── readme.txt │ ├── registration_check_test │ │ ├── CMakeLists.txt │ │ ├── conf │ │ │ ├── registration_check_config.json.in │ │ │ ├── registration_check_start.sh.in │ │ │ └── someip_sequence_checker.py.in │ │ ├── docs │ │ │ ├── message_sequence.png │ │ │ ├── message_sequence.puml │ │ │ ├── someip_sequence_checker.png │ │ │ └── someip_sequence_checker.puml │ │ ├── registration_check_service.cpp │ │ ├── registration_check_service.hpp │ │ ├── registration_check_test.cpp │ │ └── registration_check_test.md │ ├── regression_tests │ │ ├── CMakeLists.txt │ │ ├── climate_test_client.cpp │ │ ├── climate_test_globals.hpp │ │ ├── climate_test_service.cpp │ │ └── conf │ │ │ ├── climate_test_master.json.in │ │ │ ├── climate_test_master_starter.sh.in │ │ │ ├── climate_test_slave.json.in │ │ │ └── climate_test_slave_starter.sh.in │ ├── restart_routing_tests │ │ ├── CMakeLists.txt │ │ ├── conf │ │ │ ├── restart_routing_test_autoconfig.json.in │ │ │ ├── restart_routing_test_autoconfig_service_host.json.in │ │ │ ├── restart_routing_test_client.json.in │ │ │ └── restart_routing_test_service.json.in │ │ ├── docs │ │ │ ├── restart_routing_routingmanagerd_host.png │ │ │ ├── restart_routing_routingmanagerd_host.puml │ │ │ ├── restart_routing_service_host.png │ │ │ └── restart_routing_service_host.puml │ │ ├── restart_routing_test.md │ │ ├── restart_routing_test_client.cpp │ │ ├── restart_routing_test_client.hpp │ │ ├── restart_routing_test_globals.hpp │ │ ├── restart_routing_test_manager.cpp │ │ ├── restart_routing_test_service.cpp │ │ └── restart_routing_test_service.hpp │ ├── routing_tests │ │ ├── CMakeLists.txt │ │ ├── conf │ │ │ ├── external_local_routing_test_client_external.json.in │ │ │ ├── external_local_routing_test_client_external_start.sh.in │ │ │ ├── external_local_routing_test_service.json.in │ │ │ ├── external_local_routing_test_service_start.sh.in │ │ │ ├── external_local_routing_test_starter.sh.in │ │ │ ├── local_routing_test_client.json.in │ │ │ ├── local_routing_test_client_start.sh.in │ │ │ ├── local_routing_test_service.json.in │ │ │ ├── local_routing_test_service_start.sh.in │ │ │ └── local_routing_test_starter.sh.in │ │ ├── external_local_routing_test_service.cpp │ │ ├── external_local_routing_test_service.hpp │ │ ├── local_routing_test_client.cpp │ │ ├── local_routing_test_client.hpp │ │ ├── local_routing_test_service.cpp │ │ └── local_routing_test_service.hpp │ ├── second_address_tests │ │ ├── CMakeLists.txt │ │ ├── conf │ │ │ ├── second_address_test_master_client.json.in │ │ │ ├── second_address_test_master_service_udp.json.in │ │ │ ├── second_address_test_master_starter.sh.in │ │ │ ├── second_address_test_slave_client.json.in │ │ │ ├── second_address_test_slave_service_udp.json.in │ │ │ └── second_address_test_slave_starter.sh.in │ │ ├── second_address_test_client.cpp │ │ ├── second_address_test_globals.hpp │ │ └── second_address_test_service.cpp │ ├── security_tests │ │ ├── CMakeLists.txt │ │ ├── conf │ │ │ ├── security_test_config_client_external_allow.json.in │ │ │ ├── security_test_config_client_external_deny.json.in │ │ │ ├── security_test_config_service_external_allow.json.in │ │ │ ├── security_test_config_service_external_deny.json.in │ │ │ ├── security_test_external_master_start.sh.in │ │ │ ├── security_test_external_slave_start.sh.in │ │ │ ├── security_test_local_config.json.in │ │ │ └── security_test_local_start.sh.in │ │ ├── docs │ │ │ ├── security_test_client.png │ │ │ ├── security_test_client.puml │ │ │ ├── security_test_service.png │ │ │ └── security_test_service.puml │ │ ├── security_test.md │ │ ├── security_test_client.cpp │ │ ├── security_test_client.hpp │ │ ├── security_test_service.cpp │ │ └── security_test_service.hpp │ ├── someip_test_globals.hpp │ ├── someip_tp_tests │ │ ├── CMakeLists.txt │ │ ├── conf │ │ │ ├── someip_tp_test_master.json.in │ │ │ └── someip_tp_test_master_starter.sh.in │ │ ├── someip_tp_test_globals.hpp │ │ ├── someip_tp_test_msg_sender.cpp │ │ └── someip_tp_test_service.cpp │ ├── subscribe_notify_one_tests │ │ ├── CMakeLists.txt │ │ ├── conf │ │ │ ├── subscribe_notify_one_test_diff_client_ids_diff_ports_master.json.in │ │ │ ├── subscribe_notify_one_test_diff_client_ids_diff_ports_master_tcp.json.in │ │ │ ├── subscribe_notify_one_test_diff_client_ids_diff_ports_master_udp.json.in │ │ │ ├── subscribe_notify_one_test_diff_client_ids_diff_ports_slave.json.in │ │ │ ├── subscribe_notify_one_test_diff_client_ids_diff_ports_slave_tcp.json.in │ │ │ ├── subscribe_notify_one_test_diff_client_ids_diff_ports_slave_udp.json.in │ │ │ ├── subscribe_notify_one_test_master_starter.sh.in │ │ │ └── subscribe_notify_one_test_slave_starter.sh.in │ │ ├── subscribe_notify_one_test_globals.hpp │ │ └── subscribe_notify_one_test_service.cpp │ ├── subscribe_notify_tests │ │ ├── CMakeLists.txt │ │ ├── conf │ │ │ ├── subscribe_notify_test_diff_client_ids_diff_ports_autoconfig_master.json.in │ │ │ ├── subscribe_notify_test_diff_client_ids_diff_ports_autoconfig_master_local_tcp.json.in │ │ │ ├── subscribe_notify_test_diff_client_ids_diff_ports_autoconfig_slave.json.in │ │ │ ├── subscribe_notify_test_diff_client_ids_diff_ports_autoconfig_slave_local_tcp.json.in │ │ │ ├── subscribe_notify_test_diff_client_ids_diff_ports_master.json.in │ │ │ ├── subscribe_notify_test_diff_client_ids_diff_ports_master_local_tcp.json.in │ │ │ ├── subscribe_notify_test_diff_client_ids_diff_ports_master_tcp.json.in │ │ │ ├── subscribe_notify_test_diff_client_ids_diff_ports_master_tcp_local_tcp.json.in │ │ │ ├── subscribe_notify_test_diff_client_ids_diff_ports_master_udp.json.in │ │ │ ├── subscribe_notify_test_diff_client_ids_diff_ports_master_udp_local_tcp.json.in │ │ │ ├── subscribe_notify_test_diff_client_ids_diff_ports_same_service_id_master_udp.json.in │ │ │ ├── subscribe_notify_test_diff_client_ids_diff_ports_same_service_id_master_udp_local_tcp.json.in │ │ │ ├── subscribe_notify_test_diff_client_ids_diff_ports_same_service_id_slave_udp.json.in │ │ │ ├── subscribe_notify_test_diff_client_ids_diff_ports_same_service_id_slave_udp_local_tcp.json.in │ │ │ ├── subscribe_notify_test_diff_client_ids_diff_ports_slave.json.in │ │ │ ├── subscribe_notify_test_diff_client_ids_diff_ports_slave_local_tcp.json.in │ │ │ ├── subscribe_notify_test_diff_client_ids_diff_ports_slave_tcp.json.in │ │ │ ├── subscribe_notify_test_diff_client_ids_diff_ports_slave_tcp_local_tcp.json.in │ │ │ ├── subscribe_notify_test_diff_client_ids_diff_ports_slave_udp.json.in │ │ │ ├── subscribe_notify_test_diff_client_ids_diff_ports_slave_udp_local_tcp.json.in │ │ │ ├── subscribe_notify_test_diff_client_ids_partial_same_ports_master.json.in │ │ │ ├── subscribe_notify_test_diff_client_ids_partial_same_ports_master_local_tcp.json.in │ │ │ ├── subscribe_notify_test_diff_client_ids_partial_same_ports_slave.json.in │ │ │ ├── subscribe_notify_test_diff_client_ids_partial_same_ports_slave_local_tcp.json.in │ │ │ ├── subscribe_notify_test_diff_client_ids_same_ports_master.json.in │ │ │ ├── subscribe_notify_test_diff_client_ids_same_ports_master_local_tcp.json.in │ │ │ ├── subscribe_notify_test_diff_client_ids_same_ports_master_tcp.json.in │ │ │ ├── subscribe_notify_test_diff_client_ids_same_ports_master_tcp_local_tcp.json.in │ │ │ ├── subscribe_notify_test_diff_client_ids_same_ports_master_udp.json.in │ │ │ ├── subscribe_notify_test_diff_client_ids_same_ports_master_udp_local_tcp.json.in │ │ │ ├── subscribe_notify_test_diff_client_ids_same_ports_slave.json.in │ │ │ ├── subscribe_notify_test_diff_client_ids_same_ports_slave_local_tcp.json.in │ │ │ ├── subscribe_notify_test_diff_client_ids_same_ports_slave_tcp.json.in │ │ │ ├── subscribe_notify_test_diff_client_ids_same_ports_slave_tcp_local_tcp.json.in │ │ │ ├── subscribe_notify_test_diff_client_ids_same_ports_slave_udp.json.in │ │ │ ├── subscribe_notify_test_diff_client_ids_same_ports_slave_udp_local_tcp.json.in │ │ │ ├── subscribe_notify_test_master_starter.sh.in │ │ │ ├── subscribe_notify_test_one_event_two_eventgroups_master.json.in │ │ │ ├── subscribe_notify_test_one_event_two_eventgroups_master_local_tcp.json.in │ │ │ ├── subscribe_notify_test_one_event_two_eventgroups_master_starter.sh.in │ │ │ ├── subscribe_notify_test_one_event_two_eventgroups_slave_starter.sh.in │ │ │ ├── subscribe_notify_test_one_event_two_eventgroups_tcp_slave.json.in │ │ │ ├── subscribe_notify_test_one_event_two_eventgroups_tcp_slave_local_tcp.json.in │ │ │ ├── subscribe_notify_test_one_event_two_eventgroups_udp_slave.json.in │ │ │ ├── subscribe_notify_test_one_event_two_eventgroups_udp_slave_local_tcp.json.in │ │ │ ├── subscribe_notify_test_same_client_ids_diff_ports_master.json.in │ │ │ ├── subscribe_notify_test_same_client_ids_diff_ports_master_local_tcp.json.in │ │ │ ├── subscribe_notify_test_same_client_ids_diff_ports_slave.json.in │ │ │ ├── subscribe_notify_test_same_client_ids_diff_ports_slave_local_tcp.json.in │ │ │ ├── subscribe_notify_test_same_client_ids_same_ports_master.json.in │ │ │ ├── subscribe_notify_test_same_client_ids_same_ports_master_local_tcp.json.in │ │ │ ├── subscribe_notify_test_same_client_ids_same_ports_slave.json.in │ │ │ ├── subscribe_notify_test_same_client_ids_same_ports_slave_local_tcp.json.in │ │ │ └── subscribe_notify_test_slave_starter.sh.in │ │ ├── docs │ │ │ ├── subscribe_notify_test_diff_client.png │ │ │ ├── subscribe_notify_test_diff_client.puml │ │ │ ├── subscribe_notify_test_one_tests.png │ │ │ └── subscribe_notify_test_one_tests.puml │ │ ├── subscribe_notify_test_diff_client.md │ │ ├── subscribe_notify_test_globals.hpp │ │ ├── subscribe_notify_test_one_event_two_eventgroups_client.cpp │ │ ├── subscribe_notify_test_one_event_two_eventgroups_service.cpp │ │ ├── subscribe_notify_test_one_tests.md │ │ └── subscribe_notify_test_service.cpp │ └── suspend_resume_tests │ │ ├── CMakeLists.txt │ │ ├── conf │ │ ├── suspend_resume_test_client.json.in │ │ ├── suspend_resume_test_master_starter.sh.in │ │ ├── suspend_resume_test_service.json.in │ │ └── suspend_resume_test_slave_starter.sh.in │ │ ├── docs │ │ ├── suspend_resume_test.png │ │ └── suspend_resume_test.puml │ │ ├── suspend_resume_test.hpp │ │ ├── suspend_resume_test_client.cpp │ │ ├── suspend_resume_test_service.cpp │ │ └── suspend_resume_tests.md ├── tsan-suppressions.txt └── unit_tests │ ├── CMakeLists.txt │ ├── main.cpp │ ├── message_deserializer_tests │ ├── CMakeLists.txt │ └── ut_deserialize.cpp │ ├── message_payload_impl_tests │ ├── CMakeLists.txt │ └── ut_payload_impl.cpp │ ├── message_serializer_tests │ ├── CMakeLists.txt │ └── ut_serialize.cpp │ ├── netlink_tests │ ├── CMakeLists.txt │ └── ut_simulated_messages.cpp │ ├── protocol_tests │ ├── CMakeLists.txt │ ├── main.cpp │ └── ut_config_command.cpp │ ├── routing_manager_tests │ ├── CMakeLists.txt │ ├── mocks │ │ └── mock_routing_manager_host.hpp │ ├── routing_manager_ut_setup.cpp │ ├── routing_manager_ut_setup.hpp │ └── ut_set_routing_state.cpp │ ├── security_policy_manager_impl_tests │ ├── CMakeLists.txt │ ├── policy_manager_impl_unit_test_macro.hpp.in │ └── ut_policy_manager_impl.cpp │ ├── security_policy_tests │ ├── CMakeLists.txt │ └── ut_policy.cpp │ ├── security_tests │ ├── CMakeLists.txt │ ├── ut_check_credentials.cpp │ ├── ut_check_routing_credentials.cpp │ ├── ut_get_client_to_sec_client_mapping.cpp │ ├── ut_get_clients.cpp │ ├── ut_get_sec_client_to_clients_mapping.cpp │ ├── ut_is_client_allowed.cpp │ ├── ut_is_offer_allowed.cpp │ ├── ut_is_policy_update_allowed.cpp │ ├── ut_load.cpp │ ├── ut_load_policies.cpp │ ├── ut_load_security_policy_extensions.cpp │ ├── ut_load_security_update_whitelist.cpp │ ├── ut_remove_client_to_sec_client_mapping.cpp │ └── ut_remove_security_policy.cpp │ ├── usei_tests │ ├── CMakeLists.txt │ ├── mocked_vsomeip_dependencies.hpp │ └── ut_basic_tests.cpp │ ├── utility_tests │ └── ut_ByteOperation.cpp │ └── utility_utility_tests │ ├── CMakeLists.txt │ └── ut_utility.cpp ├── tools ├── vsomeip_ctrl │ ├── CMakeLists.txt │ └── vsomeip_ctrl.cpp └── wireshark_plugin │ ├── README.md │ └── vsomeip-dissector.lua ├── vsomeip.pc.in ├── vsomeip.xml ├── vsomeip3.pc.in ├── vsomeip3Config.cmake.in ├── vsomeip3ConfigVersion.cmake.in ├── vsomeipConfig.cmake.in ├── vsomeipConfigVersion.cmake.in └── zuul └── network-tests ├── Dockerfile ├── docker-compose.yaml ├── entrypoint-master ├── entrypoint-slave ├── shlib ├── common.shlib └── results.shlib ├── ssh_config └── valgrind ├── helgrind.supp └── memcheck.supp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/.clang-format -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/.github/ISSUE_TEMPLATE/bug-report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/workflows/c-cpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/.github/workflows/c-cpp.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.tests-whitelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/.tests-whitelist -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | Bayerische Motoren Werke Aktiengesellschaft (BMW AG) 2 | -------------------------------------------------------------------------------- /Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/Android.bp -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/Android.mk -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/CHANGES -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/README.md -------------------------------------------------------------------------------- /config/vsomeip-local-security.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/config/vsomeip-local-security.json -------------------------------------------------------------------------------- /config/vsomeip-local-tcp-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/config/vsomeip-local-tcp-client.json -------------------------------------------------------------------------------- /config/vsomeip-local-tcp-service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/config/vsomeip-local-tcp-service.json -------------------------------------------------------------------------------- /config/vsomeip-local-tracing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/config/vsomeip-local-tracing.json -------------------------------------------------------------------------------- /config/vsomeip-local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/config/vsomeip-local.json -------------------------------------------------------------------------------- /config/vsomeip-tcp-client-security.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/config/vsomeip-tcp-client-security.json -------------------------------------------------------------------------------- /config/vsomeip-tcp-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/config/vsomeip-tcp-client.json -------------------------------------------------------------------------------- /config/vsomeip-tcp-service-security.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/config/vsomeip-tcp-service-security.json -------------------------------------------------------------------------------- /config/vsomeip-tcp-service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/config/vsomeip-tcp-service.json -------------------------------------------------------------------------------- /config/vsomeip-udp-client-security.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/config/vsomeip-udp-client-security.json -------------------------------------------------------------------------------- /config/vsomeip-udp-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/config/vsomeip-udp-client.json -------------------------------------------------------------------------------- /config/vsomeip-udp-service-security.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/config/vsomeip-udp-service-security.json -------------------------------------------------------------------------------- /config/vsomeip-udp-service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/config/vsomeip-udp-service.json -------------------------------------------------------------------------------- /config/vsomeip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/config/vsomeip.json -------------------------------------------------------------------------------- /documentation/.gitignore: -------------------------------------------------------------------------------- 1 | *.qea 2 | asciidoctor 3 | -------------------------------------------------------------------------------- /documentation/diagrams/offer_service.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/documentation/diagrams/offer_service.drawio.svg -------------------------------------------------------------------------------- /documentation/diagrams/sequence_offer_service.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/documentation/diagrams/sequence_offer_service.puml -------------------------------------------------------------------------------- /documentation/diagrams/sequence_offer_service.puml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/documentation/diagrams/sequence_offer_service.puml.svg -------------------------------------------------------------------------------- /documentation/diagrams/usecases_overview.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/documentation/diagrams/usecases_overview.drawio.svg -------------------------------------------------------------------------------- /documentation/diagrams/usecases_overview.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/documentation/diagrams/usecases_overview.puml -------------------------------------------------------------------------------- /documentation/doxygen.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/documentation/doxygen.in -------------------------------------------------------------------------------- /documentation/network-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/documentation/network-tests.md -------------------------------------------------------------------------------- /documentation/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/documentation/readme.md -------------------------------------------------------------------------------- /documentation/vsomeip.eap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/documentation/vsomeip.eap -------------------------------------------------------------------------------- /documentation/vsomeipConfiguration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/documentation/vsomeipConfiguration.md -------------------------------------------------------------------------------- /documentation/vsomeipProtocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/documentation/vsomeipProtocol.md -------------------------------------------------------------------------------- /documentation/vsomeipUserGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/documentation/vsomeipUserGuide.md -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/hello_world/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/examples/hello_world/Android.bp -------------------------------------------------------------------------------- /examples/hello_world/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/examples/hello_world/CMakeLists.txt -------------------------------------------------------------------------------- /examples/hello_world/hello_world_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/examples/hello_world/hello_world_client.hpp -------------------------------------------------------------------------------- /examples/hello_world/hello_world_client_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/examples/hello_world/hello_world_client_main.cpp -------------------------------------------------------------------------------- /examples/hello_world/hello_world_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/examples/hello_world/hello_world_service.hpp -------------------------------------------------------------------------------- /examples/hello_world/hello_world_service_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/examples/hello_world/hello_world_service_main.cpp -------------------------------------------------------------------------------- /examples/hello_world/helloworld-local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/examples/hello_world/helloworld-local.json -------------------------------------------------------------------------------- /examples/hello_world/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/examples/hello_world/readme.md -------------------------------------------------------------------------------- /examples/hello_world/readme_android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/examples/hello_world/readme_android -------------------------------------------------------------------------------- /examples/notify-sample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/examples/notify-sample.cpp -------------------------------------------------------------------------------- /examples/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/examples/readme.md -------------------------------------------------------------------------------- /examples/request-sample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/examples/request-sample.cpp -------------------------------------------------------------------------------- /examples/response-sample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/examples/response-sample.cpp -------------------------------------------------------------------------------- /examples/routingmanagerd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/examples/routingmanagerd/CMakeLists.txt -------------------------------------------------------------------------------- /examples/routingmanagerd/routingmanagerd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/examples/routingmanagerd/routingmanagerd.cpp -------------------------------------------------------------------------------- /examples/sample-ids.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/examples/sample-ids.hpp -------------------------------------------------------------------------------- /examples/subscribe-sample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/examples/subscribe-sample.cpp -------------------------------------------------------------------------------- /exportmap.gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/exportmap.gcc -------------------------------------------------------------------------------- /implementation/compat/message/include/message_base_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/compat/message/include/message_base_impl.hpp -------------------------------------------------------------------------------- /implementation/compat/message/include/message_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/compat/message/include/message_impl.hpp -------------------------------------------------------------------------------- /implementation/compat/message/include/payload_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/compat/message/include/payload_impl.hpp -------------------------------------------------------------------------------- /implementation/compat/message/src/message_base_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/compat/message/src/message_base_impl.cpp -------------------------------------------------------------------------------- /implementation/compat/message/src/message_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/compat/message/src/message_impl.cpp -------------------------------------------------------------------------------- /implementation/compat/message/src/payload_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/compat/message/src/payload_impl.cpp -------------------------------------------------------------------------------- /implementation/compat/runtime/include/application_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/compat/runtime/include/application_impl.hpp -------------------------------------------------------------------------------- /implementation/compat/runtime/include/runtime_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/compat/runtime/include/runtime_impl.hpp -------------------------------------------------------------------------------- /implementation/compat/runtime/src/application_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/compat/runtime/src/application_impl.cpp -------------------------------------------------------------------------------- /implementation/compat/runtime/src/runtime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/compat/runtime/src/runtime.cpp -------------------------------------------------------------------------------- /implementation/compat/runtime/src/runtime_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/compat/runtime/src/runtime_impl.cpp -------------------------------------------------------------------------------- /implementation/configuration/include/application_configuration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/configuration/include/application_configuration.hpp -------------------------------------------------------------------------------- /implementation/configuration/include/client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/configuration/include/client.hpp -------------------------------------------------------------------------------- /implementation/configuration/include/configuration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/configuration/include/configuration.hpp -------------------------------------------------------------------------------- /implementation/configuration/include/configuration_element.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/configuration/include/configuration_element.hpp -------------------------------------------------------------------------------- /implementation/configuration/include/configuration_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/configuration/include/configuration_impl.hpp -------------------------------------------------------------------------------- /implementation/configuration/include/configuration_plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/configuration/include/configuration_plugin.hpp -------------------------------------------------------------------------------- /implementation/configuration/include/configuration_plugin_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/configuration/include/configuration_plugin_impl.hpp -------------------------------------------------------------------------------- /implementation/configuration/include/debounce_filter_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/configuration/include/debounce_filter_impl.hpp -------------------------------------------------------------------------------- /implementation/configuration/include/e2e.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/configuration/include/e2e.hpp -------------------------------------------------------------------------------- /implementation/configuration/include/event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/configuration/include/event.hpp -------------------------------------------------------------------------------- /implementation/configuration/include/eventgroup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/configuration/include/eventgroup.hpp -------------------------------------------------------------------------------- /implementation/configuration/include/internal.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/configuration/include/internal.hpp.in -------------------------------------------------------------------------------- /implementation/configuration/include/internal_android.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/configuration/include/internal_android.hpp -------------------------------------------------------------------------------- /implementation/configuration/include/local_clients_keepalive.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/configuration/include/local_clients_keepalive.hpp -------------------------------------------------------------------------------- /implementation/configuration/include/routing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/configuration/include/routing.hpp -------------------------------------------------------------------------------- /implementation/configuration/include/service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/configuration/include/service.hpp -------------------------------------------------------------------------------- /implementation/configuration/include/service_instance_range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/configuration/include/service_instance_range.hpp -------------------------------------------------------------------------------- /implementation/configuration/include/trace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/configuration/include/trace.hpp -------------------------------------------------------------------------------- /implementation/configuration/include/watchdog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/configuration/include/watchdog.hpp -------------------------------------------------------------------------------- /implementation/configuration/src/configuration_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/configuration/src/configuration_impl.cpp -------------------------------------------------------------------------------- /implementation/configuration/src/configuration_plugin_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/configuration/src/configuration_plugin_impl.cpp -------------------------------------------------------------------------------- /implementation/e2e_protection/include/buffer/buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/e2e_protection/include/buffer/buffer.hpp -------------------------------------------------------------------------------- /implementation/e2e_protection/include/crc/crc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/e2e_protection/include/crc/crc.hpp -------------------------------------------------------------------------------- /implementation/e2e_protection/include/e2e/profile/e2e_provider.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/e2e_protection/include/e2e/profile/e2e_provider.hpp -------------------------------------------------------------------------------- /implementation/e2e_protection/include/e2e/profile/e2e_provider_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/e2e_protection/include/e2e/profile/e2e_provider_impl.hpp -------------------------------------------------------------------------------- /implementation/e2e_protection/include/e2e/profile/profile01/checker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/e2e_protection/include/e2e/profile/profile01/checker.hpp -------------------------------------------------------------------------------- /implementation/e2e_protection/include/e2e/profile/profile04/checker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/e2e_protection/include/e2e/profile/profile04/checker.hpp -------------------------------------------------------------------------------- /implementation/e2e_protection/include/e2e/profile/profile05/checker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/e2e_protection/include/e2e/profile/profile05/checker.hpp -------------------------------------------------------------------------------- /implementation/e2e_protection/include/e2e/profile/profile07/checker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/e2e_protection/include/e2e/profile/profile07/checker.hpp -------------------------------------------------------------------------------- /implementation/e2e_protection/include/e2exf/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/e2e_protection/include/e2exf/config.hpp -------------------------------------------------------------------------------- /implementation/e2e_protection/src/buffer/buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/e2e_protection/src/buffer/buffer.cpp -------------------------------------------------------------------------------- /implementation/e2e_protection/src/crc/crc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/e2e_protection/src/crc/crc.cpp -------------------------------------------------------------------------------- /implementation/e2e_protection/src/e2e/profile/e2e_provider_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/e2e_protection/src/e2e/profile/e2e_provider_impl.cpp -------------------------------------------------------------------------------- /implementation/e2e_protection/src/e2e/profile/profile01/checker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/e2e_protection/src/e2e/profile/profile01/checker.cpp -------------------------------------------------------------------------------- /implementation/e2e_protection/src/e2e/profile/profile01/profile_01.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/e2e_protection/src/e2e/profile/profile01/profile_01.cpp -------------------------------------------------------------------------------- /implementation/e2e_protection/src/e2e/profile/profile01/protector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/e2e_protection/src/e2e/profile/profile01/protector.cpp -------------------------------------------------------------------------------- /implementation/e2e_protection/src/e2e/profile/profile04/checker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/e2e_protection/src/e2e/profile/profile04/checker.cpp -------------------------------------------------------------------------------- /implementation/e2e_protection/src/e2e/profile/profile04/profile_04.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/e2e_protection/src/e2e/profile/profile04/profile_04.cpp -------------------------------------------------------------------------------- /implementation/e2e_protection/src/e2e/profile/profile04/protector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/e2e_protection/src/e2e/profile/profile04/protector.cpp -------------------------------------------------------------------------------- /implementation/e2e_protection/src/e2e/profile/profile05/checker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/e2e_protection/src/e2e/profile/profile05/checker.cpp -------------------------------------------------------------------------------- /implementation/e2e_protection/src/e2e/profile/profile05/profile_05.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/e2e_protection/src/e2e/profile/profile05/profile_05.cpp -------------------------------------------------------------------------------- /implementation/e2e_protection/src/e2e/profile/profile05/protector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/e2e_protection/src/e2e/profile/profile05/protector.cpp -------------------------------------------------------------------------------- /implementation/e2e_protection/src/e2e/profile/profile07/checker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/e2e_protection/src/e2e/profile/profile07/checker.cpp -------------------------------------------------------------------------------- /implementation/e2e_protection/src/e2e/profile/profile07/profile_07.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/e2e_protection/src/e2e/profile/profile07/profile_07.cpp -------------------------------------------------------------------------------- /implementation/e2e_protection/src/e2e/profile/profile07/protector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/e2e_protection/src/e2e/profile/profile07/protector.cpp -------------------------------------------------------------------------------- /implementation/e2e_protection/src/e2exf/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/e2e_protection/src/e2exf/config.cpp -------------------------------------------------------------------------------- /implementation/endpoints/include/abstract_netlink_connector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/include/abstract_netlink_connector.hpp -------------------------------------------------------------------------------- /implementation/endpoints/include/abstract_socket_factory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/include/abstract_socket_factory.hpp -------------------------------------------------------------------------------- /implementation/endpoints/include/asio_socket_factory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/include/asio_socket_factory.hpp -------------------------------------------------------------------------------- /implementation/endpoints/include/asio_tcp_socket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/include/asio_tcp_socket.hpp -------------------------------------------------------------------------------- /implementation/endpoints/include/buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/include/buffer.hpp -------------------------------------------------------------------------------- /implementation/endpoints/include/client_endpoint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/include/client_endpoint.hpp -------------------------------------------------------------------------------- /implementation/endpoints/include/client_endpoint_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/include/client_endpoint_impl.hpp -------------------------------------------------------------------------------- /implementation/endpoints/include/credentials.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/include/credentials.hpp -------------------------------------------------------------------------------- /implementation/endpoints/include/endpoint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/include/endpoint.hpp -------------------------------------------------------------------------------- /implementation/endpoints/include/endpoint_definition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/include/endpoint_definition.hpp -------------------------------------------------------------------------------- /implementation/endpoints/include/endpoint_host.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/include/endpoint_host.hpp -------------------------------------------------------------------------------- /implementation/endpoints/include/endpoint_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/include/endpoint_impl.hpp -------------------------------------------------------------------------------- /implementation/endpoints/include/endpoint_manager_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/include/endpoint_manager_base.hpp -------------------------------------------------------------------------------- /implementation/endpoints/include/endpoint_manager_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/include/endpoint_manager_impl.hpp -------------------------------------------------------------------------------- /implementation/endpoints/include/io_control_operation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/include/io_control_operation.hpp -------------------------------------------------------------------------------- /implementation/endpoints/include/local_client_endpoint_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/include/local_client_endpoint_impl.hpp -------------------------------------------------------------------------------- /implementation/endpoints/include/local_tcp_client_endpoint_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/include/local_tcp_client_endpoint_impl.hpp -------------------------------------------------------------------------------- /implementation/endpoints/include/local_tcp_server_endpoint_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/include/local_tcp_server_endpoint_impl.hpp -------------------------------------------------------------------------------- /implementation/endpoints/include/local_uds_client_endpoint_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/include/local_uds_client_endpoint_impl.hpp -------------------------------------------------------------------------------- /implementation/endpoints/include/local_uds_server_endpoint_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/include/local_uds_server_endpoint_impl.hpp -------------------------------------------------------------------------------- /implementation/endpoints/include/netlink_connector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/include/netlink_connector.hpp -------------------------------------------------------------------------------- /implementation/endpoints/include/server_endpoint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/include/server_endpoint.hpp -------------------------------------------------------------------------------- /implementation/endpoints/include/server_endpoint_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/include/server_endpoint_impl.hpp -------------------------------------------------------------------------------- /implementation/endpoints/include/tcp_client_endpoint_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/include/tcp_client_endpoint_impl.hpp -------------------------------------------------------------------------------- /implementation/endpoints/include/tcp_server_endpoint_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/include/tcp_server_endpoint_impl.hpp -------------------------------------------------------------------------------- /implementation/endpoints/include/tcp_socket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/include/tcp_socket.hpp -------------------------------------------------------------------------------- /implementation/endpoints/include/tp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/include/tp.hpp -------------------------------------------------------------------------------- /implementation/endpoints/include/tp_message.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/include/tp_message.hpp -------------------------------------------------------------------------------- /implementation/endpoints/include/tp_reassembler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/include/tp_reassembler.hpp -------------------------------------------------------------------------------- /implementation/endpoints/include/udp_client_endpoint_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/include/udp_client_endpoint_impl.hpp -------------------------------------------------------------------------------- /implementation/endpoints/include/udp_server_endpoint_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/include/udp_server_endpoint_impl.hpp -------------------------------------------------------------------------------- /implementation/endpoints/include/virtual_server_endpoint_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/include/virtual_server_endpoint_impl.hpp -------------------------------------------------------------------------------- /implementation/endpoints/src/abstract_socket_factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/src/abstract_socket_factory.cpp -------------------------------------------------------------------------------- /implementation/endpoints/src/asio_socket_factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/src/asio_socket_factory.cpp -------------------------------------------------------------------------------- /implementation/endpoints/src/client_endpoint_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/src/client_endpoint_impl.cpp -------------------------------------------------------------------------------- /implementation/endpoints/src/credentials.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/src/credentials.cpp -------------------------------------------------------------------------------- /implementation/endpoints/src/endpoint_definition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/src/endpoint_definition.cpp -------------------------------------------------------------------------------- /implementation/endpoints/src/endpoint_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/src/endpoint_impl.cpp -------------------------------------------------------------------------------- /implementation/endpoints/src/endpoint_manager_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/src/endpoint_manager_base.cpp -------------------------------------------------------------------------------- /implementation/endpoints/src/endpoint_manager_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/src/endpoint_manager_impl.cpp -------------------------------------------------------------------------------- /implementation/endpoints/src/local_client_endpoint_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/src/local_client_endpoint_impl.cpp -------------------------------------------------------------------------------- /implementation/endpoints/src/local_tcp_client_endpoint_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/src/local_tcp_client_endpoint_impl.cpp -------------------------------------------------------------------------------- /implementation/endpoints/src/local_tcp_server_endpoint_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/src/local_tcp_server_endpoint_impl.cpp -------------------------------------------------------------------------------- /implementation/endpoints/src/local_uds_client_endpoint_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/src/local_uds_client_endpoint_impl.cpp -------------------------------------------------------------------------------- /implementation/endpoints/src/local_uds_server_endpoint_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/src/local_uds_server_endpoint_impl.cpp -------------------------------------------------------------------------------- /implementation/endpoints/src/netlink_connector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/src/netlink_connector.cpp -------------------------------------------------------------------------------- /implementation/endpoints/src/server_endpoint_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/src/server_endpoint_impl.cpp -------------------------------------------------------------------------------- /implementation/endpoints/src/tcp_client_endpoint_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/src/tcp_client_endpoint_impl.cpp -------------------------------------------------------------------------------- /implementation/endpoints/src/tcp_server_endpoint_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/src/tcp_server_endpoint_impl.cpp -------------------------------------------------------------------------------- /implementation/endpoints/src/tp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/src/tp.cpp -------------------------------------------------------------------------------- /implementation/endpoints/src/tp_message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/src/tp_message.cpp -------------------------------------------------------------------------------- /implementation/endpoints/src/tp_reassembler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/src/tp_reassembler.cpp -------------------------------------------------------------------------------- /implementation/endpoints/src/udp_client_endpoint_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/src/udp_client_endpoint_impl.cpp -------------------------------------------------------------------------------- /implementation/endpoints/src/udp_server_endpoint_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/src/udp_server_endpoint_impl.cpp -------------------------------------------------------------------------------- /implementation/endpoints/src/virtual_server_endpoint_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/endpoints/src/virtual_server_endpoint_impl.cpp -------------------------------------------------------------------------------- /implementation/logger/include/logger_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/logger/include/logger_impl.hpp -------------------------------------------------------------------------------- /implementation/logger/src/logger_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/logger/src/logger_impl.cpp -------------------------------------------------------------------------------- /implementation/logger/src/message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/logger/src/message.cpp -------------------------------------------------------------------------------- /implementation/message/include/deserializer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/message/include/deserializer.hpp -------------------------------------------------------------------------------- /implementation/message/include/message_base_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/message/include/message_base_impl.hpp -------------------------------------------------------------------------------- /implementation/message/include/message_header_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/message/include/message_header_impl.hpp -------------------------------------------------------------------------------- /implementation/message/include/message_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/message/include/message_impl.hpp -------------------------------------------------------------------------------- /implementation/message/include/payload_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/message/include/payload_impl.hpp -------------------------------------------------------------------------------- /implementation/message/include/serializer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/message/include/serializer.hpp -------------------------------------------------------------------------------- /implementation/message/src/deserializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/message/src/deserializer.cpp -------------------------------------------------------------------------------- /implementation/message/src/message_base_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/message/src/message_base_impl.cpp -------------------------------------------------------------------------------- /implementation/message/src/message_header_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/message/src/message_header_impl.cpp -------------------------------------------------------------------------------- /implementation/message/src/message_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/message/src/message_impl.cpp -------------------------------------------------------------------------------- /implementation/message/src/payload_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/message/src/payload_impl.cpp -------------------------------------------------------------------------------- /implementation/message/src/serializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/message/src/serializer.cpp -------------------------------------------------------------------------------- /implementation/plugin/include/plugin_manager_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/plugin/include/plugin_manager_impl.hpp -------------------------------------------------------------------------------- /implementation/plugin/src/plugin_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/plugin/src/plugin_manager.cpp -------------------------------------------------------------------------------- /implementation/plugin/src/plugin_manager_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/plugin/src/plugin_manager_impl.cpp -------------------------------------------------------------------------------- /implementation/protocol/include/assign_client_ack_command.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/include/assign_client_ack_command.hpp -------------------------------------------------------------------------------- /implementation/protocol/include/assign_client_command.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/include/assign_client_command.hpp -------------------------------------------------------------------------------- /implementation/protocol/include/command.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/include/command.hpp -------------------------------------------------------------------------------- /implementation/protocol/include/config_command.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/include/config_command.hpp -------------------------------------------------------------------------------- /implementation/protocol/include/deregister_application_command.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/include/deregister_application_command.hpp -------------------------------------------------------------------------------- /implementation/protocol/include/dummy_command.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/include/dummy_command.hpp -------------------------------------------------------------------------------- /implementation/protocol/include/expire_command.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/include/expire_command.hpp -------------------------------------------------------------------------------- /implementation/protocol/include/multiple_services_command_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/include/multiple_services_command_base.hpp -------------------------------------------------------------------------------- /implementation/protocol/include/offer_service_command.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/include/offer_service_command.hpp -------------------------------------------------------------------------------- /implementation/protocol/include/offered_services_request_command.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/include/offered_services_request_command.hpp -------------------------------------------------------------------------------- /implementation/protocol/include/offered_services_response_command.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/include/offered_services_response_command.hpp -------------------------------------------------------------------------------- /implementation/protocol/include/ping_command.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/include/ping_command.hpp -------------------------------------------------------------------------------- /implementation/protocol/include/pong_command.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/include/pong_command.hpp -------------------------------------------------------------------------------- /implementation/protocol/include/protocol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/include/protocol.hpp -------------------------------------------------------------------------------- /implementation/protocol/include/register_application_command.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/include/register_application_command.hpp -------------------------------------------------------------------------------- /implementation/protocol/include/register_event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/include/register_event.hpp -------------------------------------------------------------------------------- /implementation/protocol/include/register_events_command.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/include/register_events_command.hpp -------------------------------------------------------------------------------- /implementation/protocol/include/registered_ack_command.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/include/registered_ack_command.hpp -------------------------------------------------------------------------------- /implementation/protocol/include/release_service_command.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/include/release_service_command.hpp -------------------------------------------------------------------------------- /implementation/protocol/include/remove_security_policy_command.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/include/remove_security_policy_command.hpp -------------------------------------------------------------------------------- /implementation/protocol/include/request_service_command.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/include/request_service_command.hpp -------------------------------------------------------------------------------- /implementation/protocol/include/resend_provided_events_command.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/include/resend_provided_events_command.hpp -------------------------------------------------------------------------------- /implementation/protocol/include/routing_info_command.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/include/routing_info_command.hpp -------------------------------------------------------------------------------- /implementation/protocol/include/routing_info_entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/include/routing_info_entry.hpp -------------------------------------------------------------------------------- /implementation/protocol/include/send_command.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/include/send_command.hpp -------------------------------------------------------------------------------- /implementation/protocol/include/service_command_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/include/service_command_base.hpp -------------------------------------------------------------------------------- /implementation/protocol/include/simple_command.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/include/simple_command.hpp -------------------------------------------------------------------------------- /implementation/protocol/include/stop_offer_service_command.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/include/stop_offer_service_command.hpp -------------------------------------------------------------------------------- /implementation/protocol/include/subscribe_ack_command.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/include/subscribe_ack_command.hpp -------------------------------------------------------------------------------- /implementation/protocol/include/subscribe_ack_command_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/include/subscribe_ack_command_base.hpp -------------------------------------------------------------------------------- /implementation/protocol/include/subscribe_command.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/include/subscribe_command.hpp -------------------------------------------------------------------------------- /implementation/protocol/include/subscribe_command_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/include/subscribe_command_base.hpp -------------------------------------------------------------------------------- /implementation/protocol/include/subscribe_nack_command.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/include/subscribe_nack_command.hpp -------------------------------------------------------------------------------- /implementation/protocol/include/suspend_command.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/include/suspend_command.hpp -------------------------------------------------------------------------------- /implementation/protocol/include/unregister_event_command.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/include/unregister_event_command.hpp -------------------------------------------------------------------------------- /implementation/protocol/include/unsubscribe_ack_command.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/include/unsubscribe_ack_command.hpp -------------------------------------------------------------------------------- /implementation/protocol/include/unsubscribe_command.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/include/unsubscribe_command.hpp -------------------------------------------------------------------------------- /implementation/protocol/include/update_security_credentials_command.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/include/update_security_credentials_command.hpp -------------------------------------------------------------------------------- /implementation/protocol/include/update_security_policy_command.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/include/update_security_policy_command.hpp -------------------------------------------------------------------------------- /implementation/protocol/src/assign_client_ack_command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/src/assign_client_ack_command.cpp -------------------------------------------------------------------------------- /implementation/protocol/src/assign_client_command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/src/assign_client_command.cpp -------------------------------------------------------------------------------- /implementation/protocol/src/command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/src/command.cpp -------------------------------------------------------------------------------- /implementation/protocol/src/config_command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/src/config_command.cpp -------------------------------------------------------------------------------- /implementation/protocol/src/deregister_application_command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/src/deregister_application_command.cpp -------------------------------------------------------------------------------- /implementation/protocol/src/distribute_security_policies_command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/src/distribute_security_policies_command.cpp -------------------------------------------------------------------------------- /implementation/protocol/src/dummy_command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/src/dummy_command.cpp -------------------------------------------------------------------------------- /implementation/protocol/src/expire_command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/src/expire_command.cpp -------------------------------------------------------------------------------- /implementation/protocol/src/multiple_services_command_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/src/multiple_services_command_base.cpp -------------------------------------------------------------------------------- /implementation/protocol/src/offer_service_command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/src/offer_service_command.cpp -------------------------------------------------------------------------------- /implementation/protocol/src/offered_services_request_command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/src/offered_services_request_command.cpp -------------------------------------------------------------------------------- /implementation/protocol/src/offered_services_response_command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/src/offered_services_response_command.cpp -------------------------------------------------------------------------------- /implementation/protocol/src/ping_command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/src/ping_command.cpp -------------------------------------------------------------------------------- /implementation/protocol/src/pong_command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/src/pong_command.cpp -------------------------------------------------------------------------------- /implementation/protocol/src/register_application_command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/src/register_application_command.cpp -------------------------------------------------------------------------------- /implementation/protocol/src/register_event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/src/register_event.cpp -------------------------------------------------------------------------------- /implementation/protocol/src/register_events_command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/src/register_events_command.cpp -------------------------------------------------------------------------------- /implementation/protocol/src/registered_ack_command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/src/registered_ack_command.cpp -------------------------------------------------------------------------------- /implementation/protocol/src/release_service_command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/src/release_service_command.cpp -------------------------------------------------------------------------------- /implementation/protocol/src/remove_security_policy_command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/src/remove_security_policy_command.cpp -------------------------------------------------------------------------------- /implementation/protocol/src/remove_security_policy_response_command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/src/remove_security_policy_response_command.cpp -------------------------------------------------------------------------------- /implementation/protocol/src/request_service_command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/src/request_service_command.cpp -------------------------------------------------------------------------------- /implementation/protocol/src/resend_provided_events_command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/src/resend_provided_events_command.cpp -------------------------------------------------------------------------------- /implementation/protocol/src/routing_info_command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/src/routing_info_command.cpp -------------------------------------------------------------------------------- /implementation/protocol/src/routing_info_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/src/routing_info_entry.cpp -------------------------------------------------------------------------------- /implementation/protocol/src/security_policy_response_command_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/src/security_policy_response_command_base.cpp -------------------------------------------------------------------------------- /implementation/protocol/src/send_command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/src/send_command.cpp -------------------------------------------------------------------------------- /implementation/protocol/src/service_command_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/src/service_command_base.cpp -------------------------------------------------------------------------------- /implementation/protocol/src/simple_command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/src/simple_command.cpp -------------------------------------------------------------------------------- /implementation/protocol/src/stop_offer_service_command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/src/stop_offer_service_command.cpp -------------------------------------------------------------------------------- /implementation/protocol/src/subscribe_ack_command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/src/subscribe_ack_command.cpp -------------------------------------------------------------------------------- /implementation/protocol/src/subscribe_ack_command_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/src/subscribe_ack_command_base.cpp -------------------------------------------------------------------------------- /implementation/protocol/src/subscribe_command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/src/subscribe_command.cpp -------------------------------------------------------------------------------- /implementation/protocol/src/subscribe_command_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/src/subscribe_command_base.cpp -------------------------------------------------------------------------------- /implementation/protocol/src/subscribe_nack_command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/src/subscribe_nack_command.cpp -------------------------------------------------------------------------------- /implementation/protocol/src/suspend_command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/src/suspend_command.cpp -------------------------------------------------------------------------------- /implementation/protocol/src/unregister_event_command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/src/unregister_event_command.cpp -------------------------------------------------------------------------------- /implementation/protocol/src/unsubscribe_ack_command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/src/unsubscribe_ack_command.cpp -------------------------------------------------------------------------------- /implementation/protocol/src/unsubscribe_command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/src/unsubscribe_command.cpp -------------------------------------------------------------------------------- /implementation/protocol/src/update_security_credentials_command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/src/update_security_credentials_command.cpp -------------------------------------------------------------------------------- /implementation/protocol/src/update_security_policy_command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/src/update_security_policy_command.cpp -------------------------------------------------------------------------------- /implementation/protocol/src/update_security_policy_response_command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/protocol/src/update_security_policy_response_command.cpp -------------------------------------------------------------------------------- /implementation/routing/include/event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/routing/include/event.hpp -------------------------------------------------------------------------------- /implementation/routing/include/eventgroupinfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/routing/include/eventgroupinfo.hpp -------------------------------------------------------------------------------- /implementation/routing/include/function_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/routing/include/function_types.hpp -------------------------------------------------------------------------------- /implementation/routing/include/remote_subscription.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/routing/include/remote_subscription.hpp -------------------------------------------------------------------------------- /implementation/routing/include/routing_host.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/routing/include/routing_host.hpp -------------------------------------------------------------------------------- /implementation/routing/include/routing_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/routing/include/routing_manager.hpp -------------------------------------------------------------------------------- /implementation/routing/include/routing_manager_adapter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/routing/include/routing_manager_adapter.hpp -------------------------------------------------------------------------------- /implementation/routing/include/routing_manager_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/routing/include/routing_manager_base.hpp -------------------------------------------------------------------------------- /implementation/routing/include/routing_manager_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/routing/include/routing_manager_client.hpp -------------------------------------------------------------------------------- /implementation/routing/include/routing_manager_host.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/routing/include/routing_manager_host.hpp -------------------------------------------------------------------------------- /implementation/routing/include/routing_manager_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/routing/include/routing_manager_impl.hpp -------------------------------------------------------------------------------- /implementation/routing/include/routing_manager_stub.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/routing/include/routing_manager_stub.hpp -------------------------------------------------------------------------------- /implementation/routing/include/routing_manager_stub_host.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/routing/include/routing_manager_stub_host.hpp -------------------------------------------------------------------------------- /implementation/routing/include/serviceinfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/routing/include/serviceinfo.hpp -------------------------------------------------------------------------------- /implementation/routing/include/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/routing/include/types.hpp -------------------------------------------------------------------------------- /implementation/routing/src/event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/routing/src/event.cpp -------------------------------------------------------------------------------- /implementation/routing/src/eventgroupinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/routing/src/eventgroupinfo.cpp -------------------------------------------------------------------------------- /implementation/routing/src/remote_subscription.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/routing/src/remote_subscription.cpp -------------------------------------------------------------------------------- /implementation/routing/src/routing_manager_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/routing/src/routing_manager_base.cpp -------------------------------------------------------------------------------- /implementation/routing/src/routing_manager_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/routing/src/routing_manager_client.cpp -------------------------------------------------------------------------------- /implementation/routing/src/routing_manager_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/routing/src/routing_manager_impl.cpp -------------------------------------------------------------------------------- /implementation/routing/src/routing_manager_stub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/routing/src/routing_manager_stub.cpp -------------------------------------------------------------------------------- /implementation/routing/src/serviceinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/routing/src/serviceinfo.cpp -------------------------------------------------------------------------------- /implementation/runtime/include/application_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/runtime/include/application_impl.hpp -------------------------------------------------------------------------------- /implementation/runtime/include/runtime_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/runtime/include/runtime_impl.hpp -------------------------------------------------------------------------------- /implementation/runtime/src/application_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/runtime/src/application_impl.cpp -------------------------------------------------------------------------------- /implementation/runtime/src/runtime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/runtime/src/runtime.cpp -------------------------------------------------------------------------------- /implementation/runtime/src/runtime_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/runtime/src/runtime_impl.cpp -------------------------------------------------------------------------------- /implementation/security/include/policy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/security/include/policy.hpp -------------------------------------------------------------------------------- /implementation/security/include/policy_manager_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/security/include/policy_manager_impl.hpp -------------------------------------------------------------------------------- /implementation/security/include/security.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/security/include/security.hpp -------------------------------------------------------------------------------- /implementation/security/src/policy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/security/src/policy.cpp -------------------------------------------------------------------------------- /implementation/security/src/policy_manager_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/security/src/policy_manager_impl.cpp -------------------------------------------------------------------------------- /implementation/security/src/security.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/security/src/security.cpp -------------------------------------------------------------------------------- /implementation/service_discovery/include/configuration_option_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/service_discovery/include/configuration_option_impl.hpp -------------------------------------------------------------------------------- /implementation/service_discovery/include/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/service_discovery/include/constants.hpp -------------------------------------------------------------------------------- /implementation/service_discovery/include/defines.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/service_discovery/include/defines.hpp -------------------------------------------------------------------------------- /implementation/service_discovery/include/deserializer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/service_discovery/include/deserializer.hpp -------------------------------------------------------------------------------- /implementation/service_discovery/include/entry_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/service_discovery/include/entry_impl.hpp -------------------------------------------------------------------------------- /implementation/service_discovery/include/enumeration_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/service_discovery/include/enumeration_types.hpp -------------------------------------------------------------------------------- /implementation/service_discovery/include/eventgroupentry_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/service_discovery/include/eventgroupentry_impl.hpp -------------------------------------------------------------------------------- /implementation/service_discovery/include/ip_option_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/service_discovery/include/ip_option_impl.hpp -------------------------------------------------------------------------------- /implementation/service_discovery/include/ipv4_option_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/service_discovery/include/ipv4_option_impl.hpp -------------------------------------------------------------------------------- /implementation/service_discovery/include/ipv6_option_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/service_discovery/include/ipv6_option_impl.hpp -------------------------------------------------------------------------------- /implementation/service_discovery/include/load_balancing_option_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/service_discovery/include/load_balancing_option_impl.hpp -------------------------------------------------------------------------------- /implementation/service_discovery/include/message_element_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/service_discovery/include/message_element_impl.hpp -------------------------------------------------------------------------------- /implementation/service_discovery/include/message_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/service_discovery/include/message_impl.hpp -------------------------------------------------------------------------------- /implementation/service_discovery/include/option_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/service_discovery/include/option_impl.hpp -------------------------------------------------------------------------------- /implementation/service_discovery/include/primitive_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/service_discovery/include/primitive_types.hpp -------------------------------------------------------------------------------- /implementation/service_discovery/include/protection_option_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/service_discovery/include/protection_option_impl.hpp -------------------------------------------------------------------------------- /implementation/service_discovery/include/remote_subscription_ack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/service_discovery/include/remote_subscription_ack.hpp -------------------------------------------------------------------------------- /implementation/service_discovery/include/request.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/service_discovery/include/request.hpp -------------------------------------------------------------------------------- /implementation/service_discovery/include/runtime.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/service_discovery/include/runtime.hpp -------------------------------------------------------------------------------- /implementation/service_discovery/include/runtime_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/service_discovery/include/runtime_impl.hpp -------------------------------------------------------------------------------- /implementation/service_discovery/include/selective_option_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/service_discovery/include/selective_option_impl.hpp -------------------------------------------------------------------------------- /implementation/service_discovery/include/service_discovery.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/service_discovery/include/service_discovery.hpp -------------------------------------------------------------------------------- /implementation/service_discovery/include/service_discovery_host.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/service_discovery/include/service_discovery_host.hpp -------------------------------------------------------------------------------- /implementation/service_discovery/include/service_discovery_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/service_discovery/include/service_discovery_impl.hpp -------------------------------------------------------------------------------- /implementation/service_discovery/include/serviceentry_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/service_discovery/include/serviceentry_impl.hpp -------------------------------------------------------------------------------- /implementation/service_discovery/include/subscription.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/service_discovery/include/subscription.hpp -------------------------------------------------------------------------------- /implementation/service_discovery/include/unknown_option_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/service_discovery/include/unknown_option_impl.hpp -------------------------------------------------------------------------------- /implementation/service_discovery/src/configuration_option_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/service_discovery/src/configuration_option_impl.cpp -------------------------------------------------------------------------------- /implementation/service_discovery/src/deserializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/service_discovery/src/deserializer.cpp -------------------------------------------------------------------------------- /implementation/service_discovery/src/entry_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/service_discovery/src/entry_impl.cpp -------------------------------------------------------------------------------- /implementation/service_discovery/src/eventgroupentry_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/service_discovery/src/eventgroupentry_impl.cpp -------------------------------------------------------------------------------- /implementation/service_discovery/src/ip_option_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/service_discovery/src/ip_option_impl.cpp -------------------------------------------------------------------------------- /implementation/service_discovery/src/ipv4_option_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/service_discovery/src/ipv4_option_impl.cpp -------------------------------------------------------------------------------- /implementation/service_discovery/src/ipv6_option_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/service_discovery/src/ipv6_option_impl.cpp -------------------------------------------------------------------------------- /implementation/service_discovery/src/load_balancing_option_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/service_discovery/src/load_balancing_option_impl.cpp -------------------------------------------------------------------------------- /implementation/service_discovery/src/message_element_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/service_discovery/src/message_element_impl.cpp -------------------------------------------------------------------------------- /implementation/service_discovery/src/message_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/service_discovery/src/message_impl.cpp -------------------------------------------------------------------------------- /implementation/service_discovery/src/option_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/service_discovery/src/option_impl.cpp -------------------------------------------------------------------------------- /implementation/service_discovery/src/protection_option_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/service_discovery/src/protection_option_impl.cpp -------------------------------------------------------------------------------- /implementation/service_discovery/src/remote_subscription_ack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/service_discovery/src/remote_subscription_ack.cpp -------------------------------------------------------------------------------- /implementation/service_discovery/src/request.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/service_discovery/src/request.cpp -------------------------------------------------------------------------------- /implementation/service_discovery/src/runtime_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/service_discovery/src/runtime_impl.cpp -------------------------------------------------------------------------------- /implementation/service_discovery/src/selective_option_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/service_discovery/src/selective_option_impl.cpp -------------------------------------------------------------------------------- /implementation/service_discovery/src/service_discovery_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/service_discovery/src/service_discovery_impl.cpp -------------------------------------------------------------------------------- /implementation/service_discovery/src/serviceentry_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/service_discovery/src/serviceentry_impl.cpp -------------------------------------------------------------------------------- /implementation/service_discovery/src/subscription.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/service_discovery/src/subscription.cpp -------------------------------------------------------------------------------- /implementation/service_discovery/src/unknown_option_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/service_discovery/src/unknown_option_impl.cpp -------------------------------------------------------------------------------- /implementation/tracing/include/channel_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/tracing/include/channel_impl.hpp -------------------------------------------------------------------------------- /implementation/tracing/include/connector_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/tracing/include/connector_impl.hpp -------------------------------------------------------------------------------- /implementation/tracing/include/defines.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/tracing/include/defines.hpp -------------------------------------------------------------------------------- /implementation/tracing/include/enumeration_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/tracing/include/enumeration_types.hpp -------------------------------------------------------------------------------- /implementation/tracing/include/header.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/tracing/include/header.hpp -------------------------------------------------------------------------------- /implementation/tracing/src/channel_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/tracing/src/channel_impl.cpp -------------------------------------------------------------------------------- /implementation/tracing/src/connector_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/tracing/src/connector_impl.cpp -------------------------------------------------------------------------------- /implementation/tracing/src/header.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/tracing/src/header.cpp -------------------------------------------------------------------------------- /implementation/utility/include/bithelper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/utility/include/bithelper.hpp -------------------------------------------------------------------------------- /implementation/utility/include/byteorder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/utility/include/byteorder.hpp -------------------------------------------------------------------------------- /implementation/utility/include/criticalsection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/utility/include/criticalsection.hpp -------------------------------------------------------------------------------- /implementation/utility/include/qnx_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/utility/include/qnx_helper.hpp -------------------------------------------------------------------------------- /implementation/utility/include/service_instance_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/utility/include/service_instance_map.hpp -------------------------------------------------------------------------------- /implementation/utility/include/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/utility/include/utility.hpp -------------------------------------------------------------------------------- /implementation/utility/src/criticalsection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/utility/src/criticalsection.cpp -------------------------------------------------------------------------------- /implementation/utility/src/utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/utility/src/utility.cpp -------------------------------------------------------------------------------- /implementation/utility/src/wrappers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/utility/src/wrappers.cpp -------------------------------------------------------------------------------- /implementation/utility/src/wrappers_qnx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/implementation/utility/src/wrappers_qnx.cpp -------------------------------------------------------------------------------- /interface/compat/vsomeip/application.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/interface/compat/vsomeip/application.hpp -------------------------------------------------------------------------------- /interface/compat/vsomeip/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/interface/compat/vsomeip/constants.hpp -------------------------------------------------------------------------------- /interface/compat/vsomeip/defines.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/interface/compat/vsomeip/defines.hpp -------------------------------------------------------------------------------- /interface/compat/vsomeip/enumeration_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/interface/compat/vsomeip/enumeration_types.hpp -------------------------------------------------------------------------------- /interface/compat/vsomeip/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/interface/compat/vsomeip/error.hpp -------------------------------------------------------------------------------- /interface/compat/vsomeip/export.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/interface/compat/vsomeip/export.hpp -------------------------------------------------------------------------------- /interface/compat/vsomeip/function_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/interface/compat/vsomeip/function_types.hpp -------------------------------------------------------------------------------- /interface/compat/vsomeip/handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/interface/compat/vsomeip/handler.hpp -------------------------------------------------------------------------------- /interface/compat/vsomeip/internal/deserializable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/interface/compat/vsomeip/internal/deserializable.hpp -------------------------------------------------------------------------------- /interface/compat/vsomeip/internal/serializable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/interface/compat/vsomeip/internal/serializable.hpp -------------------------------------------------------------------------------- /interface/compat/vsomeip/message.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/interface/compat/vsomeip/message.hpp -------------------------------------------------------------------------------- /interface/compat/vsomeip/message_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/interface/compat/vsomeip/message_base.hpp -------------------------------------------------------------------------------- /interface/compat/vsomeip/payload.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/interface/compat/vsomeip/payload.hpp -------------------------------------------------------------------------------- /interface/compat/vsomeip/plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/interface/compat/vsomeip/plugin.hpp -------------------------------------------------------------------------------- /interface/compat/vsomeip/plugins/application_plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/interface/compat/vsomeip/plugins/application_plugin.hpp -------------------------------------------------------------------------------- /interface/compat/vsomeip/plugins/pre_configuration_plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/interface/compat/vsomeip/plugins/pre_configuration_plugin.hpp -------------------------------------------------------------------------------- /interface/compat/vsomeip/primitive_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/interface/compat/vsomeip/primitive_types.hpp -------------------------------------------------------------------------------- /interface/compat/vsomeip/runtime.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/interface/compat/vsomeip/runtime.hpp -------------------------------------------------------------------------------- /interface/compat/vsomeip/trace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/interface/compat/vsomeip/trace.hpp -------------------------------------------------------------------------------- /interface/compat/vsomeip/vsomeip.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/interface/compat/vsomeip/vsomeip.hpp -------------------------------------------------------------------------------- /interface/vsomeip/application.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/interface/vsomeip/application.hpp -------------------------------------------------------------------------------- /interface/vsomeip/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/interface/vsomeip/constants.hpp -------------------------------------------------------------------------------- /interface/vsomeip/defines.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/interface/vsomeip/defines.hpp -------------------------------------------------------------------------------- /interface/vsomeip/deprecated.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/interface/vsomeip/deprecated.hpp -------------------------------------------------------------------------------- /interface/vsomeip/enumeration_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/interface/vsomeip/enumeration_types.hpp -------------------------------------------------------------------------------- /interface/vsomeip/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/interface/vsomeip/error.hpp -------------------------------------------------------------------------------- /interface/vsomeip/export.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/interface/vsomeip/export.hpp -------------------------------------------------------------------------------- /interface/vsomeip/function_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/interface/vsomeip/function_types.hpp -------------------------------------------------------------------------------- /interface/vsomeip/handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/interface/vsomeip/handler.hpp -------------------------------------------------------------------------------- /interface/vsomeip/internal/deserializable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/interface/vsomeip/internal/deserializable.hpp -------------------------------------------------------------------------------- /interface/vsomeip/internal/logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/interface/vsomeip/internal/logger.hpp -------------------------------------------------------------------------------- /interface/vsomeip/internal/plugin_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/interface/vsomeip/internal/plugin_manager.hpp -------------------------------------------------------------------------------- /interface/vsomeip/internal/policy_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/interface/vsomeip/internal/policy_manager.hpp -------------------------------------------------------------------------------- /interface/vsomeip/internal/serializable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/interface/vsomeip/internal/serializable.hpp -------------------------------------------------------------------------------- /interface/vsomeip/message.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/interface/vsomeip/message.hpp -------------------------------------------------------------------------------- /interface/vsomeip/message_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/interface/vsomeip/message_base.hpp -------------------------------------------------------------------------------- /interface/vsomeip/payload.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/interface/vsomeip/payload.hpp -------------------------------------------------------------------------------- /interface/vsomeip/plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/interface/vsomeip/plugin.hpp -------------------------------------------------------------------------------- /interface/vsomeip/plugins/application_plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/interface/vsomeip/plugins/application_plugin.hpp -------------------------------------------------------------------------------- /interface/vsomeip/plugins/pre_configuration_plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/interface/vsomeip/plugins/pre_configuration_plugin.hpp -------------------------------------------------------------------------------- /interface/vsomeip/primitive_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/interface/vsomeip/primitive_types.hpp -------------------------------------------------------------------------------- /interface/vsomeip/runtime.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/interface/vsomeip/runtime.hpp -------------------------------------------------------------------------------- /interface/vsomeip/structured_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/interface/vsomeip/structured_types.hpp -------------------------------------------------------------------------------- /interface/vsomeip/trace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/interface/vsomeip/trace.hpp -------------------------------------------------------------------------------- /interface/vsomeip/vsomeip.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/interface/vsomeip/vsomeip.hpp -------------------------------------------------------------------------------- /interface/vsomeip/vsomeip_sec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/interface/vsomeip/vsomeip_sec.h -------------------------------------------------------------------------------- /libvsomeip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/libvsomeip.yaml -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/bat_tests/excluded_tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/bat_tests/excluded_tests.txt -------------------------------------------------------------------------------- /test/bat_tests/sdk_vsomeip_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/bat_tests/sdk_vsomeip_tests.py -------------------------------------------------------------------------------- /test/bat_tests/test-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/bat_tests/test-metadata.json -------------------------------------------------------------------------------- /test/bat_tests/vsomeip_socket_path_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/bat_tests/vsomeip_socket_path_tests.py -------------------------------------------------------------------------------- /test/bat_tests/vsomeip_system_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/bat_tests/vsomeip_system_tests.py -------------------------------------------------------------------------------- /test/benchmark_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/benchmark_tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/benchmark_tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/benchmark_tests/main.cpp -------------------------------------------------------------------------------- /test/benchmark_tests/security_tests/bm_check_credentials.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/benchmark_tests/security_tests/bm_check_credentials.cpp -------------------------------------------------------------------------------- /test/benchmark_tests/security_tests/bm_check_routing_credentials.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/benchmark_tests/security_tests/bm_check_routing_credentials.cpp -------------------------------------------------------------------------------- /test/benchmark_tests/security_tests/bm_get_clients.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/benchmark_tests/security_tests/bm_get_clients.cpp -------------------------------------------------------------------------------- /test/benchmark_tests/security_tests/bm_is_client_allowed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/benchmark_tests/security_tests/bm_is_client_allowed.cpp -------------------------------------------------------------------------------- /test/benchmark_tests/security_tests/bm_is_offer_allowed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/benchmark_tests/security_tests/bm_is_offer_allowed.cpp -------------------------------------------------------------------------------- /test/benchmark_tests/security_tests/bm_is_policy_update_allowed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/benchmark_tests/security_tests/bm_is_policy_update_allowed.cpp -------------------------------------------------------------------------------- /test/benchmark_tests/security_tests/bm_load.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/benchmark_tests/security_tests/bm_load.cpp -------------------------------------------------------------------------------- /test/benchmark_tests/security_tests/bm_load_policies.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/benchmark_tests/security_tests/bm_load_policies.cpp -------------------------------------------------------------------------------- /test/benchmark_tests/security_tests/bm_remove_security_policy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/benchmark_tests/security_tests/bm_remove_security_policy.cpp -------------------------------------------------------------------------------- /test/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/common/CMakeLists.txt -------------------------------------------------------------------------------- /test/common/examples_policies/vsomeip/0_0/vsomeip_security.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/common/examples_policies/vsomeip/0_0/vsomeip_security.json -------------------------------------------------------------------------------- /test/common/examples_policies/vsomeip/vsomeip_policy_extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/common/examples_policies/vsomeip/vsomeip_policy_extensions.json -------------------------------------------------------------------------------- /test/common/examples_policies/vsomeip/vsomeip_security.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/common/examples_policies/vsomeip/vsomeip_security.json -------------------------------------------------------------------------------- /test/common/include/common/process_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/common/include/common/process_manager.hpp -------------------------------------------------------------------------------- /test/common/include/common/test_timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/common/include/common/test_timer.hpp -------------------------------------------------------------------------------- /test/common/include/common/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/common/include/common/utility.hpp -------------------------------------------------------------------------------- /test/common/include/common/vsomeip_app_utilities.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/common/include/common/vsomeip_app_utilities.hpp -------------------------------------------------------------------------------- /test/common/src/utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/common/src/utility.cpp -------------------------------------------------------------------------------- /test/common/src/vsomeip_app_utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/common/src/vsomeip_app_utilities.cpp -------------------------------------------------------------------------------- /test/internal_routing_disabled_acceptance_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/internal_routing_disabled_acceptance_test/CMakeLists.txt -------------------------------------------------------------------------------- /test/internal_routing_disabled_acceptance_test/applet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/internal_routing_disabled_acceptance_test/applet.cpp -------------------------------------------------------------------------------- /test/internal_routing_disabled_acceptance_test/applet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/internal_routing_disabled_acceptance_test/applet.hpp -------------------------------------------------------------------------------- /test/internal_routing_disabled_acceptance_test/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/internal_routing_disabled_acceptance_test/client.cpp -------------------------------------------------------------------------------- /test/internal_routing_disabled_acceptance_test/client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/internal_routing_disabled_acceptance_test/client.hpp -------------------------------------------------------------------------------- /test/internal_routing_disabled_acceptance_test/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/internal_routing_disabled_acceptance_test/config.hpp -------------------------------------------------------------------------------- /test/internal_routing_disabled_acceptance_test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/internal_routing_disabled_acceptance_test/main.cpp -------------------------------------------------------------------------------- /test/internal_routing_disabled_acceptance_test/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/internal_routing_disabled_acceptance_test/server.cpp -------------------------------------------------------------------------------- /test/internal_routing_disabled_acceptance_test/server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/internal_routing_disabled_acceptance_test/server.hpp -------------------------------------------------------------------------------- /test/internal_routing_disabled_acceptance_test/vsomeip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/internal_routing_disabled_acceptance_test/vsomeip.json -------------------------------------------------------------------------------- /test/network_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/network_tests/application_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/application_tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/network_tests/application_tests/application_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/application_tests/application_test.cpp -------------------------------------------------------------------------------- /test/network_tests/application_tests/application_test_availability.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/application_tests/application_test_availability.cpp -------------------------------------------------------------------------------- /test/network_tests/application_tests/application_test_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/application_tests/application_test_client.cpp -------------------------------------------------------------------------------- /test/network_tests/application_tests/application_test_daemon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/application_tests/application_test_daemon.cpp -------------------------------------------------------------------------------- /test/network_tests/application_tests/application_test_globals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/application_tests/application_test_globals.hpp -------------------------------------------------------------------------------- /test/network_tests/application_tests/application_test_multiple_init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/application_tests/application_test_multiple_init.cpp -------------------------------------------------------------------------------- /test/network_tests/application_tests/application_test_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/application_tests/application_test_service.cpp -------------------------------------------------------------------------------- /test/network_tests/application_tests/conf/application_test.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/application_tests/conf/application_test.json.in -------------------------------------------------------------------------------- /test/network_tests/availability_handler_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/availability_handler_tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/network_tests/big_payload_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/big_payload_tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/network_tests/big_payload_tests/big_payload_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/big_payload_tests/big_payload_test.md -------------------------------------------------------------------------------- /test/network_tests/big_payload_tests/big_payload_test_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/big_payload_tests/big_payload_test_client.cpp -------------------------------------------------------------------------------- /test/network_tests/big_payload_tests/big_payload_test_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/big_payload_tests/big_payload_test_client.hpp -------------------------------------------------------------------------------- /test/network_tests/big_payload_tests/big_payload_test_globals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/big_payload_tests/big_payload_test_globals.hpp -------------------------------------------------------------------------------- /test/network_tests/big_payload_tests/big_payload_test_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/big_payload_tests/big_payload_test_service.cpp -------------------------------------------------------------------------------- /test/network_tests/big_payload_tests/big_payload_test_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/big_payload_tests/big_payload_test_service.hpp -------------------------------------------------------------------------------- /test/network_tests/big_payload_tests/docs/big_payload_test_client.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/big_payload_tests/docs/big_payload_test_client.png -------------------------------------------------------------------------------- /test/network_tests/big_payload_tests/docs/big_payload_test_client.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/big_payload_tests/docs/big_payload_test_client.puml -------------------------------------------------------------------------------- /test/network_tests/big_payload_tests/docs/big_payload_test_service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/big_payload_tests/docs/big_payload_test_service.png -------------------------------------------------------------------------------- /test/network_tests/big_payload_tests/docs/big_payload_test_service.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/big_payload_tests/docs/big_payload_test_service.puml -------------------------------------------------------------------------------- /test/network_tests/cached_event_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/cached_event_tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/network_tests/cached_event_tests/cached_event_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/cached_event_tests/cached_event_test.md -------------------------------------------------------------------------------- /test/network_tests/cached_event_tests/cached_event_test_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/cached_event_tests/cached_event_test_client.cpp -------------------------------------------------------------------------------- /test/network_tests/cached_event_tests/cached_event_test_globals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/cached_event_tests/cached_event_test_globals.hpp -------------------------------------------------------------------------------- /test/network_tests/cached_event_tests/cached_event_test_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/cached_event_tests/cached_event_test_service.cpp -------------------------------------------------------------------------------- /test/network_tests/client_id_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/client_id_tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/network_tests/client_id_tests/client_id_test_globals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/client_id_tests/client_id_test_globals.hpp -------------------------------------------------------------------------------- /test/network_tests/client_id_tests/client_id_test_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/client_id_tests/client_id_test_service.cpp -------------------------------------------------------------------------------- /test/network_tests/client_id_tests/client_id_test_utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/client_id_tests/client_id_test_utility.cpp -------------------------------------------------------------------------------- /test/network_tests/client_id_tests/conf/client_id_test_utility.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/client_id_tests/conf/client_id_test_utility.json.in -------------------------------------------------------------------------------- /test/network_tests/configuration_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/configuration_tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/network_tests/configuration_tests/conf/configuration_test.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/configuration_tests/conf/configuration_test.json.in -------------------------------------------------------------------------------- /test/network_tests/configuration_tests/configuration_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/configuration_tests/configuration_test.cpp -------------------------------------------------------------------------------- /test/network_tests/cpu_load_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/cpu_load_tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/network_tests/cpu_load_tests/cpu_load_measurer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/cpu_load_tests/cpu_load_measurer.cpp -------------------------------------------------------------------------------- /test/network_tests/cpu_load_tests/cpu_load_measurer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/cpu_load_tests/cpu_load_measurer.hpp -------------------------------------------------------------------------------- /test/network_tests/cpu_load_tests/cpu_load_test_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/cpu_load_tests/cpu_load_test_client.cpp -------------------------------------------------------------------------------- /test/network_tests/cpu_load_tests/cpu_load_test_globals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/cpu_load_tests/cpu_load_test_globals.hpp -------------------------------------------------------------------------------- /test/network_tests/cpu_load_tests/cpu_load_test_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/cpu_load_tests/cpu_load_test_service.cpp -------------------------------------------------------------------------------- /test/network_tests/cyclic_event_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/cyclic_event_tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/network_tests/cyclic_event_tests/conf/service/vsomeip_gen.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/cyclic_event_tests/conf/service/vsomeip_gen.json.in -------------------------------------------------------------------------------- /test/network_tests/cyclic_event_tests/conf/service/vsomeip_std.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/cyclic_event_tests/conf/service/vsomeip_std.json.in -------------------------------------------------------------------------------- /test/network_tests/cyclic_event_tests/cyclic_event_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/cyclic_event_tests/cyclic_event_test.md -------------------------------------------------------------------------------- /test/network_tests/cyclic_event_tests/cyclic_event_test_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/cyclic_event_tests/cyclic_event_test_client.cpp -------------------------------------------------------------------------------- /test/network_tests/cyclic_event_tests/cyclic_event_test_globals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/cyclic_event_tests/cyclic_event_test_globals.hpp -------------------------------------------------------------------------------- /test/network_tests/cyclic_event_tests/cyclic_event_test_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/cyclic_event_tests/cyclic_event_test_service.cpp -------------------------------------------------------------------------------- /test/network_tests/debounce_callback_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/debounce_callback_tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/network_tests/debounce_callback_tests/debounce_callback_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/debounce_callback_tests/debounce_callback_test.md -------------------------------------------------------------------------------- /test/network_tests/debounce_epsilon_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/debounce_epsilon_tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/network_tests/debounce_epsilon_tests/debounce_epsilon_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/debounce_epsilon_tests/debounce_epsilon_test.md -------------------------------------------------------------------------------- /test/network_tests/debounce_filter_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/debounce_filter_tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/network_tests/debounce_filter_tests/debounce_filter_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/debounce_filter_tests/debounce_filter_test.md -------------------------------------------------------------------------------- /test/network_tests/debounce_frequency_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/debounce_frequency_tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/network_tests/debounce_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/debounce_tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/network_tests/debounce_tests/conf/debounce_test_client.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/debounce_tests/conf/debounce_test_client.json.in -------------------------------------------------------------------------------- /test/network_tests/debounce_tests/conf/debounce_test_service.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/debounce_tests/conf/debounce_test_service.json.in -------------------------------------------------------------------------------- /test/network_tests/debounce_tests/debounce_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/debounce_tests/debounce_test.md -------------------------------------------------------------------------------- /test/network_tests/debounce_tests/debounce_test_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/debounce_tests/debounce_test_client.cpp -------------------------------------------------------------------------------- /test/network_tests/debounce_tests/debounce_test_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/debounce_tests/debounce_test_client.hpp -------------------------------------------------------------------------------- /test/network_tests/debounce_tests/debounce_test_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/debounce_tests/debounce_test_common.hpp -------------------------------------------------------------------------------- /test/network_tests/debounce_tests/debounce_test_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/debounce_tests/debounce_test_service.cpp -------------------------------------------------------------------------------- /test/network_tests/debounce_tests/debounce_test_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/debounce_tests/debounce_test_service.hpp -------------------------------------------------------------------------------- /test/network_tests/debounce_tests/docs/debounce_test_client.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/debounce_tests/docs/debounce_test_client.png -------------------------------------------------------------------------------- /test/network_tests/debounce_tests/docs/debounce_test_client.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/debounce_tests/docs/debounce_test_client.puml -------------------------------------------------------------------------------- /test/network_tests/debounce_tests/docs/debounce_test_service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/debounce_tests/docs/debounce_test_service.png -------------------------------------------------------------------------------- /test/network_tests/debounce_tests/docs/debounce_test_service.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/debounce_tests/docs/debounce_test_service.puml -------------------------------------------------------------------------------- /test/network_tests/e2e_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/e2e_tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/network_tests/e2e_tests/conf/e2e_test_client_external.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/e2e_tests/conf/e2e_test_client_external.json.in -------------------------------------------------------------------------------- /test/network_tests/e2e_tests/conf/e2e_test_external_slave_start.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/e2e_tests/conf/e2e_test_external_slave_start.sh.in -------------------------------------------------------------------------------- /test/network_tests/e2e_tests/conf/e2e_test_service_external.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/e2e_tests/conf/e2e_test_service_external.json.in -------------------------------------------------------------------------------- /test/network_tests/e2e_tests/e2e_profile_04_test_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/e2e_tests/e2e_profile_04_test_client.cpp -------------------------------------------------------------------------------- /test/network_tests/e2e_tests/e2e_profile_04_test_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/e2e_tests/e2e_profile_04_test_client.hpp -------------------------------------------------------------------------------- /test/network_tests/e2e_tests/e2e_profile_04_test_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/e2e_tests/e2e_profile_04_test_common.hpp -------------------------------------------------------------------------------- /test/network_tests/e2e_tests/e2e_profile_04_test_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/e2e_tests/e2e_profile_04_test_service.cpp -------------------------------------------------------------------------------- /test/network_tests/e2e_tests/e2e_profile_04_test_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/e2e_tests/e2e_profile_04_test_service.hpp -------------------------------------------------------------------------------- /test/network_tests/e2e_tests/e2e_profile_07_test_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/e2e_tests/e2e_profile_07_test_client.cpp -------------------------------------------------------------------------------- /test/network_tests/e2e_tests/e2e_profile_07_test_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/e2e_tests/e2e_profile_07_test_client.hpp -------------------------------------------------------------------------------- /test/network_tests/e2e_tests/e2e_profile_07_test_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/e2e_tests/e2e_profile_07_test_common.hpp -------------------------------------------------------------------------------- /test/network_tests/e2e_tests/e2e_profile_07_test_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/e2e_tests/e2e_profile_07_test_service.cpp -------------------------------------------------------------------------------- /test/network_tests/e2e_tests/e2e_profile_07_test_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/e2e_tests/e2e_profile_07_test_service.hpp -------------------------------------------------------------------------------- /test/network_tests/e2e_tests/e2e_test_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/e2e_tests/e2e_test_client.cpp -------------------------------------------------------------------------------- /test/network_tests/e2e_tests/e2e_test_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/e2e_tests/e2e_test_client.hpp -------------------------------------------------------------------------------- /test/network_tests/e2e_tests/e2e_test_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/e2e_tests/e2e_test_service.cpp -------------------------------------------------------------------------------- /test/network_tests/e2e_tests/e2e_test_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/e2e_tests/e2e_test_service.hpp -------------------------------------------------------------------------------- /test/network_tests/event_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/event_tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/network_tests/event_tests/conf/event_test_master.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/event_tests/conf/event_test_master.json.in -------------------------------------------------------------------------------- /test/network_tests/event_tests/conf/event_test_master_starter.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/event_tests/conf/event_test_master_starter.sh.in -------------------------------------------------------------------------------- /test/network_tests/event_tests/conf/event_test_slave_starter.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/event_tests/conf/event_test_slave_starter.sh.in -------------------------------------------------------------------------------- /test/network_tests/event_tests/conf/event_test_slave_tcp.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/event_tests/conf/event_test_slave_tcp.json.in -------------------------------------------------------------------------------- /test/network_tests/event_tests/conf/event_test_slave_udp.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/event_tests/conf/event_test_slave_udp.json.in -------------------------------------------------------------------------------- /test/network_tests/event_tests/docs/event_test_client.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/event_tests/docs/event_test_client.png -------------------------------------------------------------------------------- /test/network_tests/event_tests/docs/event_test_client.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/event_tests/docs/event_test_client.puml -------------------------------------------------------------------------------- /test/network_tests/event_tests/docs/event_test_service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/event_tests/docs/event_test_service.png -------------------------------------------------------------------------------- /test/network_tests/event_tests/docs/event_test_service.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/event_tests/docs/event_test_service.puml -------------------------------------------------------------------------------- /test/network_tests/event_tests/event_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/event_tests/event_test.md -------------------------------------------------------------------------------- /test/network_tests/event_tests/event_test_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/event_tests/event_test_client.cpp -------------------------------------------------------------------------------- /test/network_tests/event_tests/event_test_globals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/event_tests/event_test_globals.hpp -------------------------------------------------------------------------------- /test/network_tests/event_tests/event_test_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/event_tests/event_test_service.cpp -------------------------------------------------------------------------------- /test/network_tests/fake_socket_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/fake_socket_tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/network_tests/fake_socket_tests/helpers/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/fake_socket_tests/helpers/app.cpp -------------------------------------------------------------------------------- /test/network_tests/fake_socket_tests/helpers/app.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/fake_socket_tests/helpers/app.hpp -------------------------------------------------------------------------------- /test/network_tests/fake_socket_tests/helpers/attribute_recorder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/fake_socket_tests/helpers/attribute_recorder.hpp -------------------------------------------------------------------------------- /test/network_tests/fake_socket_tests/helpers/command_message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/fake_socket_tests/helpers/command_message.cpp -------------------------------------------------------------------------------- /test/network_tests/fake_socket_tests/helpers/command_message.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/fake_socket_tests/helpers/command_message.hpp -------------------------------------------------------------------------------- /test/network_tests/fake_socket_tests/helpers/fake_socket_factory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/fake_socket_tests/helpers/fake_socket_factory.hpp -------------------------------------------------------------------------------- /test/network_tests/fake_socket_tests/helpers/fake_tcp_socket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/fake_socket_tests/helpers/fake_tcp_socket.hpp -------------------------------------------------------------------------------- /test/network_tests/fake_socket_tests/helpers/service_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/fake_socket_tests/helpers/service_state.cpp -------------------------------------------------------------------------------- /test/network_tests/fake_socket_tests/helpers/service_state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/fake_socket_tests/helpers/service_state.hpp -------------------------------------------------------------------------------- /test/network_tests/fake_socket_tests/helpers/socket_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/fake_socket_tests/helpers/socket_manager.cpp -------------------------------------------------------------------------------- /test/network_tests/fake_socket_tests/helpers/socket_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/fake_socket_tests/helpers/socket_manager.hpp -------------------------------------------------------------------------------- /test/network_tests/fake_socket_tests/helpers/test_logging.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/fake_socket_tests/helpers/test_logging.hpp -------------------------------------------------------------------------------- /test/network_tests/fake_socket_tests/helpers/to_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/fake_socket_tests/helpers/to_string.cpp -------------------------------------------------------------------------------- /test/network_tests/fake_socket_tests/helpers/to_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/fake_socket_tests/helpers/to_string.hpp -------------------------------------------------------------------------------- /test/network_tests/fake_socket_tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/fake_socket_tests/main.cpp -------------------------------------------------------------------------------- /test/network_tests/fake_socket_tests/test_connection_restoration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/fake_socket_tests/test_connection_restoration.cpp -------------------------------------------------------------------------------- /test/network_tests/header_factory_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/header_factory_tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/network_tests/header_factory_tests/header_factory_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/header_factory_tests/header_factory_test.cpp -------------------------------------------------------------------------------- /test/network_tests/hostname_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/hostname_tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/network_tests/hostname_tests/conf/hostname_test_client.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/hostname_tests/conf/hostname_test_client.json.in -------------------------------------------------------------------------------- /test/network_tests/hostname_tests/conf/hostname_test_service.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/hostname_tests/conf/hostname_test_service.json.in -------------------------------------------------------------------------------- /test/network_tests/hostname_tests/conf/hostname_test_starter.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/hostname_tests/conf/hostname_test_starter.sh.in -------------------------------------------------------------------------------- /test/network_tests/hostname_tests/docs/hostname_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/hostname_tests/docs/hostname_test.png -------------------------------------------------------------------------------- /test/network_tests/hostname_tests/docs/hostname_test.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/hostname_tests/docs/hostname_test.puml -------------------------------------------------------------------------------- /test/network_tests/hostname_tests/hostname_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/hostname_tests/hostname_test.md -------------------------------------------------------------------------------- /test/network_tests/hostname_tests/hostname_test_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/hostname_tests/hostname_test_client.cpp -------------------------------------------------------------------------------- /test/network_tests/hostname_tests/hostname_test_globals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/hostname_tests/hostname_test_globals.hpp -------------------------------------------------------------------------------- /test/network_tests/hostname_tests/hostname_test_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/hostname_tests/hostname_test_service.cpp -------------------------------------------------------------------------------- /test/network_tests/initial_event_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/initial_event_tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/network_tests/initial_event_tests/initial_event_boardnet_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/initial_event_tests/initial_event_boardnet_test.md -------------------------------------------------------------------------------- /test/network_tests/initial_event_tests/initial_event_test_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/initial_event_tests/initial_event_test_client.cpp -------------------------------------------------------------------------------- /test/network_tests/initial_event_tests/initial_event_test_globals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/initial_event_tests/initial_event_test_globals.hpp -------------------------------------------------------------------------------- /test/network_tests/initial_event_tests/initial_event_test_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/initial_event_tests/initial_event_test_service.cpp -------------------------------------------------------------------------------- /test/network_tests/lazy_load_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/lazy_load_tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/network_tests/lazy_load_tests/conf/lazy_load_test_start.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/lazy_load_tests/conf/lazy_load_test_start.sh.in -------------------------------------------------------------------------------- /test/network_tests/lazy_load_tests/lazy_load_test_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/lazy_load_tests/lazy_load_test_client.cpp -------------------------------------------------------------------------------- /test/network_tests/lazy_load_tests/lazy_load_test_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/lazy_load_tests/lazy_load_test_client.hpp -------------------------------------------------------------------------------- /test/network_tests/lazy_load_tests/lazy_load_test_lazy_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/lazy_load_tests/lazy_load_test_lazy_client.cpp -------------------------------------------------------------------------------- /test/network_tests/lazy_load_tests/lazy_load_test_lazy_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/lazy_load_tests/lazy_load_test_lazy_client.hpp -------------------------------------------------------------------------------- /test/network_tests/lazy_load_tests/lazy_load_test_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/lazy_load_tests/lazy_load_test_service.cpp -------------------------------------------------------------------------------- /test/network_tests/lazy_load_tests/lazy_load_test_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/lazy_load_tests/lazy_load_test_service.hpp -------------------------------------------------------------------------------- /test/network_tests/lazy_load_tests/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/lazy_load_tests/readme -------------------------------------------------------------------------------- /test/network_tests/magic_cookies_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/magic_cookies_tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/network_tests/magic_cookies_tests/magic_cookies_test_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/magic_cookies_tests/magic_cookies_test_client.cpp -------------------------------------------------------------------------------- /test/network_tests/magic_cookies_tests/magic_cookies_test_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/magic_cookies_tests/magic_cookies_test_service.cpp -------------------------------------------------------------------------------- /test/network_tests/malicious_data_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/malicious_data_tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/network_tests/memory_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/memory_tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/network_tests/memory_tests/conf/memory_test_client.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/memory_tests/conf/memory_test_client.json.in -------------------------------------------------------------------------------- /test/network_tests/memory_tests/conf/memory_test_master_starter.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/memory_tests/conf/memory_test_master_starter.sh.in -------------------------------------------------------------------------------- /test/network_tests/memory_tests/conf/memory_test_service.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/memory_tests/conf/memory_test_service.json.in -------------------------------------------------------------------------------- /test/network_tests/memory_tests/conf/memory_test_slave_starter.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/memory_tests/conf/memory_test_slave_starter.sh.in -------------------------------------------------------------------------------- /test/network_tests/memory_tests/memory_test_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/memory_tests/memory_test_client.cpp -------------------------------------------------------------------------------- /test/network_tests/memory_tests/memory_test_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/memory_tests/memory_test_client.hpp -------------------------------------------------------------------------------- /test/network_tests/memory_tests/memory_test_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/memory_tests/memory_test_common.hpp -------------------------------------------------------------------------------- /test/network_tests/memory_tests/memory_test_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/memory_tests/memory_test_service.cpp -------------------------------------------------------------------------------- /test/network_tests/memory_tests/memory_test_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/memory_tests/memory_test_service.hpp -------------------------------------------------------------------------------- /test/network_tests/multicast_group_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/multicast_group_tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/network_tests/multicast_group_tests/multicast_group_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/multicast_group_tests/multicast_group_test.md -------------------------------------------------------------------------------- /test/network_tests/npdu_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/npdu_tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/network_tests/npdu_tests/conf/npdu_test_client_no_npdu.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/npdu_tests/conf/npdu_test_client_no_npdu.json.in -------------------------------------------------------------------------------- /test/network_tests/npdu_tests/conf/npdu_test_client_npdu.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/npdu_tests/conf/npdu_test_client_npdu.json.in -------------------------------------------------------------------------------- /test/network_tests/npdu_tests/conf/npdu_test_client_npdu_start.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/npdu_tests/conf/npdu_test_client_npdu_start.sh.in -------------------------------------------------------------------------------- /test/network_tests/npdu_tests/conf/npdu_test_service_no_npdu.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/npdu_tests/conf/npdu_test_service_no_npdu.json.in -------------------------------------------------------------------------------- /test/network_tests/npdu_tests/conf/npdu_test_service_npdu.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/npdu_tests/conf/npdu_test_service_npdu.json.in -------------------------------------------------------------------------------- /test/network_tests/npdu_tests/conf/npdu_test_service_npdu_start.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/npdu_tests/conf/npdu_test_service_npdu_start.sh.in -------------------------------------------------------------------------------- /test/network_tests/npdu_tests/conf/npdu_test_starter.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/npdu_tests/conf/npdu_test_starter.sh.in -------------------------------------------------------------------------------- /test/network_tests/npdu_tests/npdu_test_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/npdu_tests/npdu_test_client.cpp -------------------------------------------------------------------------------- /test/network_tests/npdu_tests/npdu_test_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/npdu_tests/npdu_test_client.hpp -------------------------------------------------------------------------------- /test/network_tests/npdu_tests/npdu_test_globals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/npdu_tests/npdu_test_globals.hpp -------------------------------------------------------------------------------- /test/network_tests/npdu_tests/npdu_test_rmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/npdu_tests/npdu_test_rmd.cpp -------------------------------------------------------------------------------- /test/network_tests/npdu_tests/npdu_test_rmd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/npdu_tests/npdu_test_rmd.hpp -------------------------------------------------------------------------------- /test/network_tests/npdu_tests/npdu_test_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/npdu_tests/npdu_test_service.cpp -------------------------------------------------------------------------------- /test/network_tests/npdu_tests/npdu_test_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/npdu_tests/npdu_test_service.hpp -------------------------------------------------------------------------------- /test/network_tests/offer_stop_offer_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/offer_stop_offer_test/CMakeLists.txt -------------------------------------------------------------------------------- /test/network_tests/offer_stop_offer_test/applications/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/offer_stop_offer_test/applications/client.cpp -------------------------------------------------------------------------------- /test/network_tests/offer_stop_offer_test/applications/client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/offer_stop_offer_test/applications/client.hpp -------------------------------------------------------------------------------- /test/network_tests/offer_stop_offer_test/applications/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/offer_stop_offer_test/applications/service.cpp -------------------------------------------------------------------------------- /test/network_tests/offer_stop_offer_test/applications/service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/offer_stop_offer_test/applications/service.hpp -------------------------------------------------------------------------------- /test/network_tests/offer_stop_offer_test/applications/service_ids.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/offer_stop_offer_test/applications/service_ids.hpp -------------------------------------------------------------------------------- /test/network_tests/offer_stop_offer_test/offer_stop_offer_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/offer_stop_offer_test/offer_stop_offer_test.md -------------------------------------------------------------------------------- /test/network_tests/offer_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/offer_tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/network_tests/offer_tests/conf/offer_test_external_slave.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/offer_tests/conf/offer_test_external_slave.json.in -------------------------------------------------------------------------------- /test/network_tests/offer_tests/conf/offer_test_local.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/offer_tests/conf/offer_test_local.json.in -------------------------------------------------------------------------------- /test/network_tests/offer_tests/conf/offer_test_local_starter.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/offer_tests/conf/offer_test_local_starter.sh.in -------------------------------------------------------------------------------- /test/network_tests/offer_tests/offer_test_big_sd_msg_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/offer_tests/offer_test_big_sd_msg_client.cpp -------------------------------------------------------------------------------- /test/network_tests/offer_tests/offer_test_big_sd_msg_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/offer_tests/offer_test_big_sd_msg_service.cpp -------------------------------------------------------------------------------- /test/network_tests/offer_tests/offer_test_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/offer_tests/offer_test_client.cpp -------------------------------------------------------------------------------- /test/network_tests/offer_tests/offer_test_external_sd_msg_sender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/offer_tests/offer_test_external_sd_msg_sender.cpp -------------------------------------------------------------------------------- /test/network_tests/offer_tests/offer_test_globals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/offer_tests/offer_test_globals.hpp -------------------------------------------------------------------------------- /test/network_tests/offer_tests/offer_test_local.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/offer_tests/offer_test_local.md -------------------------------------------------------------------------------- /test/network_tests/offer_tests/offer_test_multiple_offerings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/offer_tests/offer_test_multiple_offerings.cpp -------------------------------------------------------------------------------- /test/network_tests/offer_tests/offer_test_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/offer_tests/offer_test_service.cpp -------------------------------------------------------------------------------- /test/network_tests/offer_tests/offer_test_service_external.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/offer_tests/offer_test_service_external.cpp -------------------------------------------------------------------------------- /test/network_tests/offered_services_info_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/offered_services_info_tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/network_tests/payload_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/payload_tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/network_tests/payload_tests/payload_test_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/payload_tests/payload_test_client.cpp -------------------------------------------------------------------------------- /test/network_tests/payload_tests/payload_test_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/payload_tests/payload_test_client.hpp -------------------------------------------------------------------------------- /test/network_tests/payload_tests/payload_test_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/payload_tests/payload_test_service.cpp -------------------------------------------------------------------------------- /test/network_tests/payload_tests/payload_test_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/payload_tests/payload_test_service.hpp -------------------------------------------------------------------------------- /test/network_tests/payload_tests/stopwatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/payload_tests/stopwatch.cpp -------------------------------------------------------------------------------- /test/network_tests/payload_tests/stopwatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/payload_tests/stopwatch.hpp -------------------------------------------------------------------------------- /test/network_tests/pending_subscription_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/pending_subscription_tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/network_tests/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/readme.txt -------------------------------------------------------------------------------- /test/network_tests/registration_check_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/registration_check_test/CMakeLists.txt -------------------------------------------------------------------------------- /test/network_tests/registration_check_test/docs/message_sequence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/registration_check_test/docs/message_sequence.png -------------------------------------------------------------------------------- /test/network_tests/registration_check_test/docs/message_sequence.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/registration_check_test/docs/message_sequence.puml -------------------------------------------------------------------------------- /test/network_tests/registration_check_test/registration_check_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/registration_check_test/registration_check_test.md -------------------------------------------------------------------------------- /test/network_tests/regression_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/regression_tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/network_tests/regression_tests/climate_test_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/regression_tests/climate_test_client.cpp -------------------------------------------------------------------------------- /test/network_tests/regression_tests/climate_test_globals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/regression_tests/climate_test_globals.hpp -------------------------------------------------------------------------------- /test/network_tests/regression_tests/climate_test_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/regression_tests/climate_test_service.cpp -------------------------------------------------------------------------------- /test/network_tests/regression_tests/conf/climate_test_master.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/regression_tests/conf/climate_test_master.json.in -------------------------------------------------------------------------------- /test/network_tests/regression_tests/conf/climate_test_slave.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/regression_tests/conf/climate_test_slave.json.in -------------------------------------------------------------------------------- /test/network_tests/restart_routing_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/restart_routing_tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/network_tests/restart_routing_tests/restart_routing_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/restart_routing_tests/restart_routing_test.md -------------------------------------------------------------------------------- /test/network_tests/routing_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/routing_tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/network_tests/routing_tests/local_routing_test_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/routing_tests/local_routing_test_client.cpp -------------------------------------------------------------------------------- /test/network_tests/routing_tests/local_routing_test_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/routing_tests/local_routing_test_client.hpp -------------------------------------------------------------------------------- /test/network_tests/routing_tests/local_routing_test_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/routing_tests/local_routing_test_service.cpp -------------------------------------------------------------------------------- /test/network_tests/routing_tests/local_routing_test_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/routing_tests/local_routing_test_service.hpp -------------------------------------------------------------------------------- /test/network_tests/second_address_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/second_address_tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/network_tests/security_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/security_tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/network_tests/security_tests/docs/security_test_client.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/security_tests/docs/security_test_client.png -------------------------------------------------------------------------------- /test/network_tests/security_tests/docs/security_test_client.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/security_tests/docs/security_test_client.puml -------------------------------------------------------------------------------- /test/network_tests/security_tests/docs/security_test_service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/security_tests/docs/security_test_service.png -------------------------------------------------------------------------------- /test/network_tests/security_tests/docs/security_test_service.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/security_tests/docs/security_test_service.puml -------------------------------------------------------------------------------- /test/network_tests/security_tests/security_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/security_tests/security_test.md -------------------------------------------------------------------------------- /test/network_tests/security_tests/security_test_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/security_tests/security_test_client.cpp -------------------------------------------------------------------------------- /test/network_tests/security_tests/security_test_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/security_tests/security_test_client.hpp -------------------------------------------------------------------------------- /test/network_tests/security_tests/security_test_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/security_tests/security_test_service.cpp -------------------------------------------------------------------------------- /test/network_tests/security_tests/security_test_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/security_tests/security_test_service.hpp -------------------------------------------------------------------------------- /test/network_tests/someip_test_globals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/someip_test_globals.hpp -------------------------------------------------------------------------------- /test/network_tests/someip_tp_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/someip_tp_tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/network_tests/someip_tp_tests/conf/someip_tp_test_master.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/someip_tp_tests/conf/someip_tp_test_master.json.in -------------------------------------------------------------------------------- /test/network_tests/someip_tp_tests/someip_tp_test_globals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/someip_tp_tests/someip_tp_test_globals.hpp -------------------------------------------------------------------------------- /test/network_tests/someip_tp_tests/someip_tp_test_msg_sender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/someip_tp_tests/someip_tp_test_msg_sender.cpp -------------------------------------------------------------------------------- /test/network_tests/someip_tp_tests/someip_tp_test_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/someip_tp_tests/someip_tp_test_service.cpp -------------------------------------------------------------------------------- /test/network_tests/subscribe_notify_one_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/subscribe_notify_one_tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/network_tests/subscribe_notify_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/subscribe_notify_tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/network_tests/suspend_resume_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/suspend_resume_tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/network_tests/suspend_resume_tests/docs/suspend_resume_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/suspend_resume_tests/docs/suspend_resume_test.png -------------------------------------------------------------------------------- /test/network_tests/suspend_resume_tests/docs/suspend_resume_test.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/suspend_resume_tests/docs/suspend_resume_test.puml -------------------------------------------------------------------------------- /test/network_tests/suspend_resume_tests/suspend_resume_test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/suspend_resume_tests/suspend_resume_test.hpp -------------------------------------------------------------------------------- /test/network_tests/suspend_resume_tests/suspend_resume_tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/network_tests/suspend_resume_tests/suspend_resume_tests.md -------------------------------------------------------------------------------- /test/tsan-suppressions.txt: -------------------------------------------------------------------------------- 1 | mutex:libdlt.so -------------------------------------------------------------------------------- /test/unit_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/unit_tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit_tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/unit_tests/main.cpp -------------------------------------------------------------------------------- /test/unit_tests/message_deserializer_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/unit_tests/message_deserializer_tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit_tests/message_deserializer_tests/ut_deserialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/unit_tests/message_deserializer_tests/ut_deserialize.cpp -------------------------------------------------------------------------------- /test/unit_tests/message_payload_impl_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/unit_tests/message_payload_impl_tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit_tests/message_payload_impl_tests/ut_payload_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/unit_tests/message_payload_impl_tests/ut_payload_impl.cpp -------------------------------------------------------------------------------- /test/unit_tests/message_serializer_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/unit_tests/message_serializer_tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit_tests/message_serializer_tests/ut_serialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/unit_tests/message_serializer_tests/ut_serialize.cpp -------------------------------------------------------------------------------- /test/unit_tests/netlink_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/unit_tests/netlink_tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit_tests/netlink_tests/ut_simulated_messages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/unit_tests/netlink_tests/ut_simulated_messages.cpp -------------------------------------------------------------------------------- /test/unit_tests/protocol_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/unit_tests/protocol_tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit_tests/protocol_tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/unit_tests/protocol_tests/main.cpp -------------------------------------------------------------------------------- /test/unit_tests/protocol_tests/ut_config_command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/unit_tests/protocol_tests/ut_config_command.cpp -------------------------------------------------------------------------------- /test/unit_tests/routing_manager_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/unit_tests/routing_manager_tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit_tests/routing_manager_tests/routing_manager_ut_setup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/unit_tests/routing_manager_tests/routing_manager_ut_setup.cpp -------------------------------------------------------------------------------- /test/unit_tests/routing_manager_tests/routing_manager_ut_setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/unit_tests/routing_manager_tests/routing_manager_ut_setup.hpp -------------------------------------------------------------------------------- /test/unit_tests/routing_manager_tests/ut_set_routing_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/unit_tests/routing_manager_tests/ut_set_routing_state.cpp -------------------------------------------------------------------------------- /test/unit_tests/security_policy_manager_impl_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/unit_tests/security_policy_manager_impl_tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit_tests/security_policy_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/unit_tests/security_policy_tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit_tests/security_policy_tests/ut_policy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/unit_tests/security_policy_tests/ut_policy.cpp -------------------------------------------------------------------------------- /test/unit_tests/security_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/unit_tests/security_tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit_tests/security_tests/ut_check_credentials.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/unit_tests/security_tests/ut_check_credentials.cpp -------------------------------------------------------------------------------- /test/unit_tests/security_tests/ut_check_routing_credentials.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/unit_tests/security_tests/ut_check_routing_credentials.cpp -------------------------------------------------------------------------------- /test/unit_tests/security_tests/ut_get_clients.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/unit_tests/security_tests/ut_get_clients.cpp -------------------------------------------------------------------------------- /test/unit_tests/security_tests/ut_is_client_allowed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/unit_tests/security_tests/ut_is_client_allowed.cpp -------------------------------------------------------------------------------- /test/unit_tests/security_tests/ut_is_offer_allowed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/unit_tests/security_tests/ut_is_offer_allowed.cpp -------------------------------------------------------------------------------- /test/unit_tests/security_tests/ut_is_policy_update_allowed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/unit_tests/security_tests/ut_is_policy_update_allowed.cpp -------------------------------------------------------------------------------- /test/unit_tests/security_tests/ut_load.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/unit_tests/security_tests/ut_load.cpp -------------------------------------------------------------------------------- /test/unit_tests/security_tests/ut_load_policies.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/unit_tests/security_tests/ut_load_policies.cpp -------------------------------------------------------------------------------- /test/unit_tests/security_tests/ut_load_security_policy_extensions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/unit_tests/security_tests/ut_load_security_policy_extensions.cpp -------------------------------------------------------------------------------- /test/unit_tests/security_tests/ut_load_security_update_whitelist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/unit_tests/security_tests/ut_load_security_update_whitelist.cpp -------------------------------------------------------------------------------- /test/unit_tests/security_tests/ut_remove_security_policy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/unit_tests/security_tests/ut_remove_security_policy.cpp -------------------------------------------------------------------------------- /test/unit_tests/usei_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/unit_tests/usei_tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit_tests/usei_tests/mocked_vsomeip_dependencies.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/unit_tests/usei_tests/mocked_vsomeip_dependencies.hpp -------------------------------------------------------------------------------- /test/unit_tests/usei_tests/ut_basic_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/unit_tests/usei_tests/ut_basic_tests.cpp -------------------------------------------------------------------------------- /test/unit_tests/utility_tests/ut_ByteOperation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/unit_tests/utility_tests/ut_ByteOperation.cpp -------------------------------------------------------------------------------- /test/unit_tests/utility_utility_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/unit_tests/utility_utility_tests/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit_tests/utility_utility_tests/ut_utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/test/unit_tests/utility_utility_tests/ut_utility.cpp -------------------------------------------------------------------------------- /tools/vsomeip_ctrl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/tools/vsomeip_ctrl/CMakeLists.txt -------------------------------------------------------------------------------- /tools/vsomeip_ctrl/vsomeip_ctrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/tools/vsomeip_ctrl/vsomeip_ctrl.cpp -------------------------------------------------------------------------------- /tools/wireshark_plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/tools/wireshark_plugin/README.md -------------------------------------------------------------------------------- /tools/wireshark_plugin/vsomeip-dissector.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/tools/wireshark_plugin/vsomeip-dissector.lua -------------------------------------------------------------------------------- /vsomeip.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/vsomeip.pc.in -------------------------------------------------------------------------------- /vsomeip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/vsomeip.xml -------------------------------------------------------------------------------- /vsomeip3.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/vsomeip3.pc.in -------------------------------------------------------------------------------- /vsomeip3Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/vsomeip3Config.cmake.in -------------------------------------------------------------------------------- /vsomeip3ConfigVersion.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/vsomeip3ConfigVersion.cmake.in -------------------------------------------------------------------------------- /vsomeipConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/vsomeipConfig.cmake.in -------------------------------------------------------------------------------- /vsomeipConfigVersion.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/vsomeipConfigVersion.cmake.in -------------------------------------------------------------------------------- /zuul/network-tests/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/zuul/network-tests/Dockerfile -------------------------------------------------------------------------------- /zuul/network-tests/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/zuul/network-tests/docker-compose.yaml -------------------------------------------------------------------------------- /zuul/network-tests/entrypoint-master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/zuul/network-tests/entrypoint-master -------------------------------------------------------------------------------- /zuul/network-tests/entrypoint-slave: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/zuul/network-tests/entrypoint-slave -------------------------------------------------------------------------------- /zuul/network-tests/shlib/common.shlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/zuul/network-tests/shlib/common.shlib -------------------------------------------------------------------------------- /zuul/network-tests/shlib/results.shlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/zuul/network-tests/shlib/results.shlib -------------------------------------------------------------------------------- /zuul/network-tests/ssh_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/zuul/network-tests/ssh_config -------------------------------------------------------------------------------- /zuul/network-tests/valgrind/helgrind.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/zuul/network-tests/valgrind/helgrind.supp -------------------------------------------------------------------------------- /zuul/network-tests/valgrind/memcheck.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/COVESA/vsomeip/HEAD/zuul/network-tests/valgrind/memcheck.supp --------------------------------------------------------------------------------