diff options
author | Parménides GV <parmegv@sdf.org> | 2014-11-07 11:00:43 +0100 |
---|---|---|
committer | Parménides GV <parmegv@sdf.org> | 2014-11-07 11:00:43 +0100 |
commit | 13d154326aaf34798c1232a42318fd71e9df9779 (patch) | |
tree | 4ad051ddb4e6faa11b5c67795e9285bb64d1648a /app/openvpn/doc/android.txt | |
parent | 0009911f6b9320b3bea541f88fcdc30364d2a681 (diff) | |
parent | 6544b8d32ccf81a6c1d832217642b873be8dc6b7 (diff) |
Merge branch 'develop' into release-0.8.0
Diffstat (limited to 'app/openvpn/doc/android.txt')
-rw-r--r-- | app/openvpn/doc/android.txt | 24 |
1 files changed, 15 insertions, 9 deletions
diff --git a/app/openvpn/doc/android.txt b/app/openvpn/doc/android.txt index cf8b3c79..137edfc5 100644 --- a/app/openvpn/doc/android.txt +++ b/app/openvpn/doc/android.txt @@ -55,6 +55,21 @@ To set the DNS server and search domain. The GUI will then respond with a "needok 'command' ok' or "needok 'command' cancel', e.g. "needok 'IFCONFIG' ok". +PERSIST_TUN_ACTION + +In Android 4.4-4.4.2 a bug exists that does not allow to open a new tun fd +while a tun fd is still open. When OpenVPN wants to open an fd it will do +this query. The UI should compare the last configuration of +the tun device with the current tun configuration and reply with either (or +always respond with OPEN_AFTER_BEFORE/OPEN_BEFORE_CLOSE) + +- NOACTION: Keep using the old fd +- OPEN_AFTER_CLOSE: First close the old fd and then open a new to workaround the bug +- OPEN_BEFORE_CLOSE: the normal behaviour when the VPN configuration changed + +For example the UI could respond with +needok 'PERSIST_TUN_ACTION' OPEN_AFTER_CLOSE + To protect a socket the OpenVPN will send a PROTECTFD to the UI. When sending the PROTECTFD command command to the UI it will send the fd of the socket as ancillary message over the UNIX socket. @@ -74,12 +89,3 @@ are not specific to Android but are rarely used on other platform. For example using SIGUSR1 and management-hold to restart, pause, continue the VPN on network changes or the external key management --management-external-key option and inline files. - -Due to a bug in Android 4.4-4.4.2 there the Android Control will also -query what action the daemon should take when opening the fd. The GUI -should compare the last configuration of the tun device with the current -tun configuration and reply with either - -- NOACTION: Keep using the old fd -- OPEN_AFTER_CLOSE: First close the old fd and then open a new to workaround the bug -- OPEN_BEFORE_CLOSE: the normal behaviour when the VPN configuration changed |