X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fwispr.c;h=53e33e3e117db593b39a41852e176785475044d9;hb=c4abb85bde08d5ed68c9cc608225e95415887d7d;hp=7a99034ca58c4bd09551f47d1fc06d21117e53ca;hpb=815dc93c33a379abf346fbef1640bbf15f23b286;p=platform%2Fupstream%2Fconnman.git diff --git a/src/wispr.c b/src/wispr.c index 7a99034..53e33e3 100644 --- a/src/wispr.c +++ b/src/wispr.c @@ -520,6 +520,27 @@ static gboolean wispr_input(const guint8 **data, gsize *length, return FALSE; } +static void wispr_portal_browser_reply_cb(struct connman_service *service, + connman_bool_t authentication_done, + const char *error, void *user_data) +{ + struct connman_wispr_portal_context *wp_context = user_data; + + DBG(""); + + if (service == NULL || wp_context == NULL) + return; + + if (authentication_done == FALSE) { + wispr_portal_error(wp_context); + free_wispr_routes(wp_context); + return; + } + + /* Restarting the test */ + __connman_wispr_start(service, wp_context->type); +} + static void wispr_portal_request_wispr_login(struct connman_service *service, connman_bool_t success, const char *ssid, int ssid_len, @@ -531,6 +552,14 @@ static void wispr_portal_request_wispr_login(struct connman_service *service, DBG(""); + if (error != NULL && g_strcmp0(error, + "net.connman.Agent.Error.LaunchBrowser") == 0) { + __connman_agent_request_browser(service, + wispr_portal_browser_reply_cb, + wp_context->redirect_url, wp_context); + return; + } + g_free(wp_context->wispr_username); wp_context->wispr_username = g_strdup(username); @@ -613,27 +642,6 @@ static gboolean wispr_manage_message(GWebResult *result, return FALSE; } -static void wispr_portal_browser_reply_cb(struct connman_service *service, - connman_bool_t authentication_done, - const char *error, void *user_data) -{ - struct connman_wispr_portal_context *wp_context = user_data; - - DBG(""); - - if (service == NULL || wp_context == NULL) - return; - - if (authentication_done == FALSE) { - wispr_portal_error(wp_context); - free_wispr_routes(wp_context); - return; - } - - /* Restarting the test */ - __connman_wispr_start(service, wp_context->type); -} - static gboolean wispr_portal_web_result(GWebResult *result, gpointer user_data) { struct connman_wispr_portal_context *wp_context = user_data;