summaryrefslogtreecommitdiff
path: root/app/src/main/java/se/leap/bitmaskclient/eip
AgeCommit message (Collapse)Author
2020-12-28cleanup, remove unused code and deprecated commentscyBerta
2020-07-26JobIntentServices leak activity context in APIs < 25, use application ↵cyBerta
context instead
2020-07-24fix bug in vpn profile based gateway order detection, write additional tests ↵cyBerta
for it
2020-07-24fix bug in gateway selection - always iterate through all gateways and count ↵cyBerta
those supporting the requested transport in order to get the nClosest gateway; adding more tests
2020-07-24adapt profile selection after perordered gateway list was introduced and use ↵cyBerta
profiles mUsePluggableTransports flag instead of shared preferences to get the requested transport
2020-07-23fix potential nullpointer exception in geoipservice json parsingcyBerta
2020-07-23implement gateway selection based on geoip servicecyBerta
2020-06-10catch rare IllegalStateExceptions when enqueueing jobscyBerta
2020-03-17switch to AndroidXcyBerta
2020-01-24implement basic UI for VPN tetheringcyBerta
2019-12-13reset UI State if blocking VPN was finishedcyBerta
2019-11-01start void vpn if no more gateways available during setupcyBerta
2019-11-01unify error id between provider api service and eip servicecyBerta
2019-10-25increase threshold until EipStatus is set to DISCONNETED or BLOCKING - ↵cyBerta
reduce UI flickering
2019-10-25implement error handling for edge case when AndroidcyBerta
throws an nullpointer exception while it tries to prepare the VpnService
2019-10-20show dialog if end of provider's gateway list is reached (#8964)cyBerta
2019-10-19unit tests for gateway manager's gateway selectioncyBerta
2019-10-19move EIP service related error types to EIP class, specify error if the end ↵cyBerta
of the list of available gateways has been reached during setup
2019-10-19fix gateway selection wrt. supported transportcyBerta
2019-10-19configure Gateways either from preferences or from current provider objectcyBerta
2019-10-06fix merge conflict related bug with excluding apps from vpncyBerta
2019-10-06show error dialog if no valid gateway configuration can be found for a providercyBerta
2019-10-05ignore gateways with invalid transports while still adding gateways with ↵cyBerta
valid configurations
2019-10-05change flag iat-mode to iatMode for now - due to changed demo provider setupcyBerta
2019-10-01Merge branch 'pluggableTransports2'cyBerta
2019-09-08New icon and text for Excluded Apps. Using PreferenceHelper. Test done.akuma
2019-08-09Select Apps optionakuma
2019-08-02remove unused context from GatewaysManagercyBerta
2019-08-02rename DispatcherOptions to Obfs4OptionscyBerta
2019-08-02minor cleanup in EIPcyBerta
2019-08-02add simple UI to enable/disable PT usagecyBerta
2019-08-02adapt error handling during eip setup: refresh UI if gateway profile could ↵cyBerta
not be started
2019-08-02remove equals method in Gateway class after rebasing onto latest mastercyBerta
2019-08-02'using an obfusctation connection' in italiccyBerta
2019-08-02create one vpnprofile per transport per gateway. implement basis to switch ↵cyBerta
between obfs4 and plain openvpn connections
2019-08-02update method name for gateway configuration v3cyBerta
2019-08-02use api version 3 for pluggable TransportscyBerta
2019-08-02* refactor vpn profile generationcyBerta
* fix lzo-comp flag parsing in ConfigParser
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-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-12replace 'Bitmask' in strings with variable for a better client customizationcyBerta
2019-05-22* adds a DISCONNECTING statecyBerta
* fixes vpn startup issues
2019-03-09improve vpn shutdown regarding the new gateway selectioncyBerta
(cherry picked from commit fcc04ae)
2019-03-09clean up in EIPcyBerta
(cherry picked from commit 149ce40)
2018-12-27add test and minor refactoring for gateway selectioncyBerta
2018-12-07first shot gatewayselectioncyBerta
2018-11-09block ipv6 addresses if void vpn is runningcyBerta
2018-05-12Merge branch 'cyberta_master' into #8885_testing_ProviderManagercyBerta
2018-03-238876 - refactor EIP to JobIntentServiceFup Duck