diff options
| author | Tobias Brunner <tobias@strongswan.org> | 2012-10-18 12:28:14 +0200 |
|---|---|---|
| committer | Tobias Brunner <tobias@strongswan.org> | 2012-10-18 12:28:14 +0200 |
| commit | 8bd00205f4f3c0c57eaf49f4d281f52befa9a855 (patch) | |
| tree | cf6ac06017a3d99ee3f93420072d9902922ff5cf /src/frontends/android/jni/libandroidbridge/backend/android_service.h | |
| parent | bbf90fcc79ce5de807136263713fcf48033a3bc7 (diff) | |
| parent | 25a413cb96f9711411dd1590d62d323098c267e0 (diff) | |
| download | strongswan-8bd00205f4f3c0c57eaf49f4d281f52befa9a855.tar.bz2 strongswan-8bd00205f4f3c0c57eaf49f4d281f52befa9a855.tar.xz | |
Merge branch 'android-mobility'
This brings support for MOBIKE to the Android app. The app also tries
to keep the connection up as long as possible.
DNS queries are now handled by a new class that uses independent threads to
resolve them, this allows to cancel them e.g. if no network connectivity is
available (otherwise the app would block until the DNS query returns).
Diffstat (limited to 'src/frontends/android/jni/libandroidbridge/backend/android_service.h')
| -rw-r--r-- | src/frontends/android/jni/libandroidbridge/backend/android_service.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/frontends/android/jni/libandroidbridge/backend/android_service.h b/src/frontends/android/jni/libandroidbridge/backend/android_service.h index 52c3dc5c8..1bfdcf994 100644 --- a/src/frontends/android/jni/libandroidbridge/backend/android_service.h +++ b/src/frontends/android/jni/libandroidbridge/backend/android_service.h @@ -53,13 +53,12 @@ struct android_service_t { * * @param creds Android specific credential set * @param type VPN type (see VpnType.java) - * @param local_address local ip address * @param gateway gateway address * @param username user name (local identity) * @param password password (if any) */ android_service_t *android_service_create(android_creds_t *creds, char *type, - char *local_address, char *gateway, - char *username, char *password); + char *gateway, char *username, + char *password); #endif /** ANDROID_SERVICE_H_ @}*/ |
