Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | android: Properly handle exceptions when loading keys/certificates | Tobias Brunner | 2012-11-21 | 1 | -3/+3 |
| | |||||
* | Reload logger configuration on SIGHUP | Tobias Brunner | 2012-10-18 | 1 | -22/+14 |
| | | | | | | Besides changing the configuration this allows to easily rotate log files. Also moved logger initialization back to daemon_t. | ||||
* | Make syslog and file loggers configurable at runtime | Tobias Brunner | 2012-10-18 | 1 | -13/+3 |
| | |||||
* | android: Use a shorter timeout for retransmits | Tobias Brunner | 2012-10-18 | 1 | -1/+1 |
| | |||||
* | android: Bypass/protect previously bypassed sockets if connectivity changes | Tobias Brunner | 2012-10-16 | 1 | -3/+25 |
| | |||||
* | android: Register NetworkManager as BroadcastReceiver and relay events via JNI | Tobias Brunner | 2012-10-16 | 1 | -1/+1 |
| | |||||
* | android: Determine source address dynamically | Tobias Brunner | 2012-10-16 | 1 | -9/+19 |
| | |||||
* | android: Added a method to get the user's private key via JNI | Tobias Brunner | 2012-09-24 | 1 | -1/+36 |
| | |||||
* | android: Native parts handle ikev2-cert VPN type | Tobias Brunner | 2012-08-31 | 1 | -6/+2 |
| | |||||
* | android: Added JNI method to retrieve user certificate and private key | Tobias Brunner | 2012-08-31 | 1 | -13/+58 |
| | | | | | To simplify things the private key, the user certificate and the CA certificates are all put into the same list. | ||||
* | android: Pass the type of VPN to the native parts | Tobias Brunner | 2012-08-31 | 1 | -4/+7 |
| | |||||
* | Charon logs to a file in the App's data directory | Tobias Brunner | 2012-08-13 | 1 | -1/+36 |
| | |||||
* | Moved Java to C string conversion function to android_jni header file | Tobias Brunner | 2012-08-13 | 1 | -19/+4 |
| | |||||
* | Log charon version and uname() output, split libcharon and charon initialization | Tobias Brunner | 2012-08-13 | 1 | -2/+20 |
| | |||||
* | Don't set the source address on Android | Tobias Brunner | 2012-08-13 | 1 | -0/+9 |
| | |||||
* | Close IKE_SA on Android immediately if setting up CHILD_SA fails | Tobias Brunner | 2012-08-13 | 1 | -0/+2 |
| | |||||
* | Reduce number of retransmits on Android | Tobias Brunner | 2012-08-13 | 1 | -0/+9 |
| | |||||
* | An Android specific attribute handler installs DNS servers via Builder | Tobias Brunner | 2012-08-13 | 1 | -0/+12 |
| | |||||
* | Native counterpart of VpnService.Builder added, exposed by charonservice | Tobias Brunner | 2012-08-13 | 1 | -3/+18 |
| | |||||
* | Initiate an SA via native JNI method | Tobias Brunner | 2012-08-13 | 1 | -0/+63 |
| | |||||
* | Added an Android specific credential set that provides CA certificates via JNI | Tobias Brunner | 2012-08-13 | 1 | -0/+29 |
| | |||||
* | CharonVpnService provides a function to get trusted certificates via JNI | Tobias Brunner | 2012-08-13 | 1 | -0/+48 |
| | |||||
* | Function added that allows to update VPN state via JNI | Tobias Brunner | 2012-08-13 | 1 | -0/+25 |
| | |||||
* | Implement kernel_ipsec_t.bypass_socket() via JNI and VpnService.protect() | Tobias Brunner | 2012-08-13 | 1 | -0/+29 |
| | |||||
* | Add an Android specific kernel_ipsec_t implementation | Tobias Brunner | 2012-08-13 | 1 | -0/+3 |
| | | | | | This is pretty much a proxy class that delegates everything (that is currently supported) to libipsec. | ||||
* | Add an Android specific kernel_net_t implementation | Tobias Brunner | 2012-08-13 | 1 | -0/+8 |
| | | | | | | This currently provides only no-ops and is just added because a kernel-net implementation is required and kernel-netlink can't be used at the moment. | ||||
* | Keep a global reference to the CharonVpnService object in charonservice | Tobias Brunner | 2012-08-13 | 1 | -5/+12 |
| | |||||
* | Add signal handler for fatal signals to libandroidbridge | Tobias Brunner | 2012-08-13 | 1 | -0/+24 |
| | |||||
* | Set default log level in libandroidbridge | Tobias Brunner | 2012-08-13 | 1 | -1/+7 |
| | |||||
* | Global charonservice_t object added to libandroidbridge | Tobias Brunner | 2012-08-08 | 1 | -1/+48 |
| | | | | This is later used to call Java methods on CharonVpnService via JNI. | ||||
* | Moved JNI helper macros to a separate file | Tobias Brunner | 2012-08-08 | 1 | -13/+6 |
| | | | | | Also initialize a reference to the CharonVpnService class during JNI_OnLoad, which allows us later to call methods from C to Java. | ||||
* | Load libipsec in Android app. | Tobias Brunner | 2012-08-08 | 1 | -0/+11 |
| | |||||
* | Added android.net.VpnService wrapper around charon (loaded via JNI). | Tobias Brunner | 2012-08-08 | 1 | -0/+113 |