diff options
author | Arne Schwabe <arne@rfc2549.org> | 2013-06-05 14:39:48 +0200 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2013-06-05 14:39:48 +0200 |
commit | 1e57ad0ef473917864ea1f5983e2ca79932b30c6 (patch) | |
tree | 7694f21563e50f95a75704758ea8752e69fabdb0 /src/de/blinkt/openvpn/core | |
parent | 1c900c0ee6de4af5d5fb46ebdaf7ed1929804f5a (diff) |
Add support for asking username/password if none is set (closes issue #174)
Diffstat (limited to 'src/de/blinkt/openvpn/core')
-rw-r--r-- | src/de/blinkt/openvpn/core/DeviceStateReceiver.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/de/blinkt/openvpn/core/DeviceStateReceiver.java b/src/de/blinkt/openvpn/core/DeviceStateReceiver.java index 7d6e80db..b27ea00f 100644 --- a/src/de/blinkt/openvpn/core/DeviceStateReceiver.java +++ b/src/de/blinkt/openvpn/core/DeviceStateReceiver.java @@ -70,6 +70,7 @@ public class DeviceStateReceiver extends BroadcastReceiver implements ByteCountL screen = connectState.DISCONNECTED;
OpenVPN.logInfo(R.string.screenoff_pause,
OpenVpnService.humanReadableByteCount(TRAFFIC_LIMIT, false), TRAFFIC_WINDOW);
+
mManangement.pause();
}
Log.i("OpenVPN", String.format("State: %s %s total %d last %d time %d",network.name(), screen.name(),windowtraffic/1024,
|