mirror of
https://github.com/strongswan/strongswan.git
synced 2025-10-03 00:00:24 -04:00
Merge branch 'android-reauth-fix'
Fixes issues with reauthentication, in particular, to reestablish the SA if MOBIKE is disabled. The app currently can't handle make-before-break reauthentication. In part because necessary events are currently not triggered. So for now, we switch back to the classic reauthentication approach.
This commit is contained in:
commit
0bce9839c9
@ -9,8 +9,8 @@ android {
|
||||
minSdkVersion 21
|
||||
targetSdkVersion 34
|
||||
|
||||
versionCode 87
|
||||
versionName "2.5.3"
|
||||
versionCode 88
|
||||
versionName "2.5.4"
|
||||
|
||||
externalNativeBuild {
|
||||
ndkBuild {
|
||||
|
@ -504,6 +504,11 @@ static void set_options(char *logfile, jboolean ipv6)
|
||||
"charon.retransmit_base", ANDROID_RETRANSMIT_BASE);
|
||||
lib->settings->set_bool(lib->settings,
|
||||
"charon.initiator_only", TRUE);
|
||||
/* the service currently can't handle make-before-break reauth and assumes
|
||||
* the old SA is deleted before the replacement and intalls a special
|
||||
* replacement TUN device in-between */
|
||||
lib->settings->set_bool(lib->settings,
|
||||
"charon.make_before_break", FALSE);
|
||||
lib->settings->set_bool(lib->settings,
|
||||
"charon.close_ike_on_child_failure", TRUE);
|
||||
lib->settings->set_bool(lib->settings,
|
||||
|
@ -1,3 +1,7 @@
|
||||
# 2.5.4 #
|
||||
|
||||
- Fixt Probleme beim Wiederherstellen der Verbindung
|
||||
|
||||
# 2.5.3 #
|
||||
|
||||
- Unterstützt die Verteilung von Passwörtern in verwalteten Profilen
|
||||
|
@ -1,3 +1,7 @@
|
||||
# 2.5.4 #
|
||||
|
||||
- Fix issues when reestablishing the connection
|
||||
|
||||
# 2.5.3 #
|
||||
|
||||
- Add support for distributing passwords in managed profiles
|
||||
|
Loading…
x
Reference in New Issue
Block a user