summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Fix format specifier in memory_log_timer_cbk (#429)HEADmasterFlorian Frank2023-04-141-1/+2
| | | | | | Include inttypes to use correct format specifier when running on 32 or 64 bit platforms. Signed-off-by: Florian Frank <github@ffrnk.de>
* Update load_balancing_option_impl.cpp (#423)Jimmy-drod2023-03-201-1/+1
| | | bug fix
* Fix typo in application_impl.cpp (#419)Ikko Eltociear Ashimine2023-03-141-1/+1
| | | unintialized -> uninitialized
* Merge pull request #416 from COVESA/update_3.3.03.3.0Diogo Pedrosa2023-03-13904-70272/+37151
|\ | | | | vsomeip 3.3.0
| * vsomeip 3.3.0Diogo Pedrosa2023-03-10904-70272/+37151
|/
* fix Android.bp error (#413)BarleyXu2023-03-031-2/+2
| | | Co-authored-by: xavier.xu <xavier.xu@batechworks.com>
* Fix timestamp format of log message (#411)Florian Frank2023-03-031-2/+2
| | | | | | tm_mon is counted from 0, so needs to be incremented by 1 Signed-off-by: Florian Frank <git@ffrnk.de> Co-authored-by: Florian Frank <git@ffrnk.de>
* vsomeip 3.1.37.1 (#414)Diogo Pedrosa2023-03-03115-752/+3485
| | | Co-authored-by: Diogo Pedrosa <diogo.pedrosa@ctw.bmwgroup.com>
* Merge pull request #356 from fynnwilliam/masterlutzbichler2022-09-2223-73/+73
|\ | | | | Use Reference to Prevent Copying
| * Use reference to prevent copyingfynnwilliam2022-06-2518-68/+68
| | | | | | | | | | | | | | | | Since the variables are marked as const - we are not going to change them, we may also take them by ref. Which means we just want to see the variables. This improves the performance and also helps to generate minimal code.
| * Compatibility with older versions is not requiredfynnwilliam2022-06-255-5/+5
|/ | | | | Compatibility with CMake < 2.8.12 will be removed from a future version of CMake.
* Merge pull request #140 from janbernloehr/masterlutzbichler2022-03-151-0/+31
|\ | | | | Add CI using github actions
| * Add cijanbernloehr2020-07-071-0/+31
| |
* | Merge pull request #320 from alexlarsson/fix-big-endianlutzbichler2022-03-151-2/+4
|\ \ | | | | | | Fix big endian support in byteorder.hpp
| * | Fix big endian support in byteorder.hppAlexander Larsson2022-03-091-2/+4
| | | | | | | | | | | | | | | This adds VSOMEIP_WORDS_TO_LONG and removes unmatched parenthesis in VSOMEIP_LONG_WORD0 and VSOMEIP_LONG_WORD1
* | | Merge pull request #318 from alexlarsson/boost-176-supportlutzbichler2022-03-1528-2/+13966
|\ \ \ | | | | | | | | Support boost 1.76
| * | | Support boost 1.76Alexander Larsson2022-03-0928-2/+13966
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This adds support for boost 1.76. For this to work we needed a new version of the boost helpers, because boost 1.76beta1 added this change: https://github.com/boostorg/asio/commit/1c16c45a3d447f685dfa7a9b704d26f10b0f3e29 The introduction of these dummy arguments to the constructor of boost::asio::detail::io_object_impl need to be mirrored in the basic socket helpers.
* | | Merge pull request #316 from LccGitHub/tc8-devlutzbichler2022-03-152-2/+2
|\ \ \ | | | | | | | | Fix for issu #315: TC8 test case SOMEIPSRV_RPC_07 to passed
| * | | fix for TC8 test case SOMEIPSRV_SD_BEHAVIOR_03 to passedlichengcheng2022-02-221-1/+1
| | | |
| * | | fix for TC8 test case SOMEIPSRV_RPC_07 to passedlichengcheng2022-02-221-1/+1
| |/ /
* | | Merge pull request #314 from doschropa/add-support-for-broadcast-messageslutzbichler2022-03-151-0/+3
|\ \ \ | | | | | | | | Fix for issue #313, Handle service discovery messages from broadcast
| * | | add support for broadcastDominik Schütz2022-02-101-0/+3
| |/ /
* | | Merge pull request #312 from doschropa/fix-interface-specific-errorslutzbichler2022-03-151-1/+3
|\ \ \ | | | | | | | | Fix for issue #311, Error handling ignores interface specific errors
| * | | accept return codes within range 0x20 - 0x5E as validDominik Schütz2022-02-101-1/+3
| |/ /
* | | Merge pull request #300 from ims0/fix-issue-263lutzbichler2022-03-151-0/+2
|\ \ \ | | | | | | | | fix for issue #263, configuration option deserialize bug
| * | | fix for issue #263, configuration option deserialize bugims02021-12-081-0/+2
| |/ /
* | | Merge pull request #288 from 007herelsp/masterlutzbichler2022-03-157-9/+131
|\ \ \ | | | | | | | | fixed android build error
| * | | fixed android build error007herelsp2021-10-317-9/+131
| |/ /
* | | Merge pull request #283 from phiwer/dev/retry_netlinklutzbichler2022-03-151-4/+33
|\ \ \ | | | | | | | | Retry failed netlink operations
| * | | Retry failed netlink operationsPhilip Werner2021-09-301-4/+33
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The stack sends three requests to the kernel using the netlink socket. If the kernel is e.g. busy at this point, netlink will respond with a EBUSY error value. The current code does not handle these errors gracefully, but instead silently ignores them. This can lead to vsomeip stack being stalled, and not starting certain services, e.g. service discovery. This patch helps fix these issues by sending a retry of the messages that fail.
* | | Merge pull request #274 from phiwer/dev/update_paths_to_vendorlutzbichler2022-03-151-2/+2
|\ \ \ | | | | | | | | Update configuration paths to reside on vendor partition
| * | | Update configuration paths to reside on vendor partitionWerner, Philip2021-08-171-2/+2
| |/ / | | | | | | | | | | | | As vsomeip is a vendor library, the configuration files should also reside on the vendor partition.
* | | Merge pull request #272 from ↵lutzbichler2022-03-151-10/+0
|\ \ \ | | | | | | | | | | | | | | | | luminartech/bugfix/multicast_timeout_crash_on_windows Fix multicast timeout crash on Windows
| * | | Fix multicast timeout crash on Windows caused by bad use of reinterpret_castDrew Goldfarb2021-08-101-10/+0
| |/ /
* | | Merge pull request #247 from ByteXiaoTang/masterlutzbichler2022-03-153-2/+4
|\ \ \ | | | | | | | | fix for issue #239 #241 #223
| * | | modify for issue #223Mingzhoutang2021-05-131-0/+1
| | | |
| * | | modify for issue #241Mingzhoutang2021-05-131-0/+1
| | | |
| * | | fix for bug #239, as one process use two stubs for different vlansMingzhoutang2021-05-131-2/+2
| |/ /
* | | Merge pull request #238 from mwarning/fixlutzbichler2022-03-152-2/+2
|\ \ \ | | | | | | | | fix typo in error message
| * | | fix typo in error messageMoritz Warning2021-03-052-2/+2
| |/ /
* | | Merge pull request #237 from seokhee-lee/masterlutzbichler2022-03-151-3/+1
|\ \ \ | |/ / |/| | Support REQUEST_ACK message type
| * | Support REQUEST_ACK message typeSeokhee Lee2021-03-051-3/+1
|/ / | | | | | | | | | | This change supports REQUEST_ACK message type for SOMEIPSRV_ONWIRE_09 in OPEN Alliance Automotive Ethernet ECU Test Specification.
* | vsomeip 3.1.20.33.1.20.3Lutz Bichler2020-12-143-2/+8
| |
* | vsomeip 3.1.20.23.1.20.2Lutz Bichler2020-12-0418-169/+273
| |
* | vsomeip 3.1.20.13.1.20.1Lutz Bichler2020-11-30105-1730/+18035
| |
* | vsomeip 3.1.16.13.1.16.1Lutz Bichler2020-08-1130-1353/+94
|/
* vsomeip 3.1.15.13.1.15.1Lutz Bichler2020-06-2919-144/+341
|
* vsomeip 3.1.14.13.1.14.1Lutz Bichler2020-06-02124-1762/+2759
|
* vsomeip 3.1.7.13.1.7.1Lutz Bichler2020-02-12584-28316/+74565
|
* vsomeip 2.14.162.14.16Lutz Bichler2019-07-22153-1966/+15406
|