Skip to content

Commit c78c923

Browse files
committedJun 2, 2020
vsomeip 3.1.14.1
1 parent 8371cdc commit c78c923

File tree

124 files changed

+2759
-1762
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

124 files changed

+2759
-1762
lines changed
 

‎Android.bp

+9-11
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ cc_defaults {
3636
"-Wno-sign-compare",
3737
"-Wno-format",
3838
"-Wno-header-guard",
39-
"-Wno-overloaded-virtual"
39+
"-Wno-overloaded-virtual",
40+
"-Wno-implicit-fallthrough"
4041
]
4142
}
4243

@@ -58,15 +59,14 @@ cc_library_shared {
5859

5960
local_include_dirs: [
6061
"interface",
61-
"implementation/helper/1.66"
62+
"implementation/helper/1.70"
6263
],
6364

6465
export_include_dirs: [
6566
"interface"
6667
],
6768

6869
shared_libs: [
69-
"libboost_log",
7070
"libboost_system",
7171
"libboost_thread",
7272
"libboost_filesystem",
@@ -89,12 +89,12 @@ cc_library_shared {
8989

9090
local_include_dirs: [
9191
"interface",
92-
"implementation/helper/1.66"
92+
"implementation/helper/1.70"
9393
],
9494

9595
shared_libs: [
9696
"libvsomeip",
97-
"libboost_log",
97+
"libboost_system",
9898
"libboost_filesystem"
9999
]
100100
}
@@ -113,12 +113,11 @@ cc_library_shared {
113113

114114
local_include_dirs: [
115115
"interface",
116-
"implementation/helper/1.66"
116+
"implementation/helper/1.70"
117117
],
118118

119119
shared_libs: [
120-
"libvsomeip",
121-
"libboost_log"
120+
"libvsomeip"
122121
]
123122
}
124123

@@ -136,11 +135,10 @@ cc_library_shared {
136135

137136
local_include_dirs: [
138137
"interface",
139-
"implementation/helper/1.66"
138+
"implementation/helper/1.70"
140139
],
141140

142141
shared_libs: [
143-
"libvsomeip",
144-
"libboost_log"
142+
"libvsomeip"
145143
]
146144
}

‎CHANGES

+48
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,54 @@
11
Changes
22
=======
33

4+
v3.1.14.1
5+
- Merged extended support for static routing (versioning)
6+
(by Jean-Patrice Laude <jean-patrice.laude@renault.com>)
7+
- Merged simplification of build process for hello_world example
8+
(by Nikolay Khilyuk <nkh@ua.fm>)
9+
- Updated Android.bp to use boost 1.70.0 or higher
10+
- Merged Android support for hello_world example
11+
(by Nikolay Khilyuk <nkh@ua.fm>)
12+
- Align response sample to documentation (do not specify application name)
13+
(by JayHou <houjie@lixiang.com>)
14+
- Call dlerror before calling dlsym to clear previous error.
15+
(by Oleg Kharitonov <Oleg.Kharitonov@elektrobit.com>)
16+
- Get base path from environment variable for Android NDK.
17+
(by Nikolay Khilyuk <nkh@ua.fm>)
18+
- Fixed wrong library naming
19+
(by Nikolay Khilyuk <nkh@ua.fm>)
20+
21+
v3.1.14
22+
- Fixed race conditions (application registration, subscription)
23+
24+
v3.1.13
25+
- Abort operation when doing a full rejoin
26+
- Protect access when consuming a policy
27+
- Decrease wait time for composite send operations
28+
- Reimplemented logger without using boost::log
29+
30+
v3.1.12
31+
- Ensure composite send operations have finished before resetting an endpoint.
32+
Otherwise this may cause a crash within boost.asio.
33+
- Always use the assigned client identifier when sending messages from a proxy.
34+
- Add TTL to initial timestamp to avoid immediate expiration.
35+
36+
v3.1.11
37+
- Preparation for new IPsec plugin (3.1.1)
38+
39+
v3.1.10
40+
- Reset subscriptions on stop offer service
41+
- Protect access to security policy contents
42+
- Tolerate wrong/incomplete event registrations in compatibility mode
43+
- Avoid buffering of pending subscriptions
44+
45+
v3.1.9
46+
- Fix race condition when processing multicast messages
47+
48+
v3.1.8
49+
- Fix deadlock when sending messages
50+
- Fix race condition when processing SD messages
51+
452
v3.1.7
553
- Fix stop subscribes when a service is released
654
- Improve handling of time stamps when processing subscriptions

0 commit comments

Comments
 (0)
Please sign in to comment.