summaryrefslogtreecommitdiff
path: root/app/src/main/java/de
AgeCommit message (Collapse)Author
2021-11-08revert restriction to be connected to wifi in order to use snowflake/tor ↵cyBerta
fallback
2021-10-16don't recompile pattern in while loopcyBerta
2021-10-02* refactor startTorProxy()cyBerta
* fix setting http proxy port correctly * snowflake+tor does currently only work when being connected to a wifi, not a cellular network. For now, we check if the device is connected to a wifi, before attempting to start tor
2021-02-28remove unused HIDELOG flagcyBerta
2021-02-28no need to delete notification channels on service destroycyBerta
2021-02-26make sure a notification is shown on reboot with always-on enabledcyBerta
2021-02-26improve error alerting if vpn launching fails, show an AlertDialog instead ↵cyBerta
of the LogView
2021-02-26Bigger refactoring:cyBerta
* always use a bound service connection to start a vpn service as foreground service to fix remote excptions. These appeared if the system wasn't able to set the service as forground shortly after it was started * move vpn start logic from LaunchVPN activity to EIP service. LaunchVPN/VoidVPNLauncher is only used in case we need to ask the user for a permission. It reduces visual glitches when the transparent LaunchVPN activity appears and disappears
2021-02-26cleanup in OpenVPNServicecyBerta
2021-02-26implement service binding in order to fix remote service exception during ↵cyBerta
foreground service start
2021-02-26some refactorings in VpnNotificationManager, start foreground service ↵cyBerta
notification in onCreate already
2021-01-18remove deprecated codecyBerta
2021-01-18fix de-/serialization of Connection objects. Fixes VPN auto-restart on ↵cyBerta
reboot due to always-on system settings or if system killed app due to low memory
2021-01-11add missing data-cipher flags to VpnProfile and ConfigParser, fixes cipher ↵cyBerta
negotiation issues
2020-12-30update ics-openvpn, openvpn, openssl, prepare Bitmask for Android 11cyBerta
2020-12-29new year cleanup: restructure messy projectcyBerta
2020-03-17switch to AndroidXcyBerta
2020-02-27disable battery save mode while tethering is enabledcyberta
2020-01-31ensure firewall is started after vpn tun interface is up, fix indentcyberta
2020-01-29implement wifi tetheringcyberta
2020-01-25add and remove configuring tethering rules on vpn start and shutdowncyberta
2020-01-24rearrange firewalling code, move to separate packagecyberta
2019-12-30reduce su calls, add logging, save if su exists and was allowed to preferencescyBerta
2019-12-30initial firewall implementation to fix #8939cyBerta
2019-10-30make sure shapeshifter dispatcher is stopped between switching vpn processescyBerta
2019-10-25implement error handling for edge case when AndroidcyBerta
throws an nullpointer exception while it tries to prepare the VpnService
2019-10-24don't let the main thread sleep for 3 seconds on every vpn gateway setupcyBerta
fixes main reason for #8963
2019-10-19fix error handling in Shapeshifter classcyBerta
2019-10-19introduce error types in VpnStatus to distinguish between Shapeshifter based ↵cyBerta
errors and others
2019-10-19VpnProfiles are equal if they have the same ip and transportcyBerta
2019-08-02cleanup in OpenVPNServicecyBerta
2019-08-02rename DispatcherOptions to Obfs4OptionscyBerta
2019-08-02add Shapeshifter class managing shapeshifter go librarycyBerta
2019-08-02remove duplicated line in OpenVPNServicecyBerta
2019-08-02create one vpnprofile per transport per gateway. implement basis to switch ↵cyBerta
between obfs4 and plain openvpn connections
2019-08-02show a little ghost and extra information in notifications when trying or ↵cyBerta
using an obfuscated connection
2019-08-02* refactor vpn profile generationcyBerta
* fix lzo-comp flag parsing in ConfigParser
2019-08-02add null checks for the case shapeshifter-dispatcher is not runningcyBerta
2019-08-02squashed commit for Pluggable TransportscyBerta
* implement handling of different provider API version (v1 and v2) * detect provider's obfs support * shapeshifter-dispatcher installation * necessary changes to control shapeshifter-dispatcher from Bitmask * route openvpn traffic over shapeshifter-dispatcher
2019-07-12cleanup: undo unnecessary if-clause nestingcyBerta
2019-07-12print stacktrace if json serialization of a VpnProfile failscyBerta
2019-07-12* use static atomicBoolean to save alwaysOn settings instead of sharedPrefscyBerta
>> avoid race conditions between sharedPreference writing and onBoot receiver reading * don't explicitly exclude Bitmask from routes
2019-07-12get rid of ics-openvpn's ProfileManager, reduces boilerplate and dead codecyBerta
2019-07-12better support for android 8.X always-on killswitch (#8945 & #8928)cyBerta
2019-07-12remove unused activitiescyBerta
2019-07-12replace 'Bitmask' in strings with variable for a better client customizationcyBerta
2019-05-22* adds a DISCONNECTING statecyBerta
* fixes vpn startup issues
2019-04-02avoid NPE in OpenVpnServicecyBerta
2019-04-01catch resource not found exception in LogItemcyBerta
2019-03-31fix NPE in NetworkUtilscyBerta