summaryrefslogtreecommitdiffstats
path: root/service/java/com/android/server/wifi/hotspot2/PasspointObjectFactory.java
diff options
context:
space:
mode:
authorEcco Park <eccopark@google.com>2018-07-30 17:28:49 -0700
committerEcco Park <eccopark@google.com>2018-09-04 09:35:53 -0700
commit937ad30df0977c7ae4077c69c71afa7e813e50a5 (patch)
tree1367a583e840ca9dcecb6d94f73e0a2126603a10 /service/java/com/android/server/wifi/hotspot2/PasspointObjectFactory.java
parente6a42731c0fa1792db3b8d6c22b5913322ed08e8 (diff)
downloadandroid_frameworks_opt_net_wifi-937ad30df0977c7ae4077c69c71afa7e813e50a5.tar.gz
android_frameworks_opt_net_wifi-937ad30df0977c7ae4077c69c71afa7e813e50a5.tar.bz2
android_frameworks_opt_net_wifi-937ad30df0977c7ae4077c69c71afa7e813e50a5.zip
passpoint-r2: redirect listener and launch an OSU app
1) In the provisioning flow, OSU application will be launched with the OSU url provided for subscription. Once user completes the subscription in OSU app, OSU server will send HTTP redirect response as completion of user input. 2) Creates OsuServer Handler thread to take care of exchaging soap message to prevent caller(WifiService Thread) from blocking until getting a SOAP response. 3) add @SmallTest annotation. Bug: 74244324 Test: ./frameworks/opt/net/wifi/tests/wifitests/runtests.sh Test: live test with Passpoint R2 service provider AP Change-Id: Ib0999fd2290e9f7bcb5dd30f1ac81c31c3f7c503 Signed-off-by: Ecco Park <eccopark@google.com>
Diffstat (limited to 'service/java/com/android/server/wifi/hotspot2/PasspointObjectFactory.java')
-rw-r--r--service/java/com/android/server/wifi/hotspot2/PasspointObjectFactory.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/service/java/com/android/server/wifi/hotspot2/PasspointObjectFactory.java b/service/java/com/android/server/wifi/hotspot2/PasspointObjectFactory.java
index 953107cf7..f743882e3 100644
--- a/service/java/com/android/server/wifi/hotspot2/PasspointObjectFactory.java
+++ b/service/java/com/android/server/wifi/hotspot2/PasspointObjectFactory.java
@@ -130,7 +130,7 @@ public class PasspointObjectFactory{
* @return {@link OsuServerConnection}
*/
public OsuServerConnection makeOsuServerConnection() {
- return new OsuServerConnection();
+ return new OsuServerConnection(null);
}