Merge "Change dbus service name for mobileap-agent and add test case for getting...
authortaesub kim <taesub.kim@samsung.com>
Mon, 7 Mar 2016 04:26:31 +0000 (20:26 -0800)
committerGerrit Code Review <gerrit@review.vlan103.tizen.org>
Mon, 7 Mar 2016 04:26:31 +0000 (20:26 -0800)
include/tethering_private.h
test/tethering_test.c

index 0190036..3572e13 100644 (file)
@@ -191,8 +191,8 @@ typedef enum {
        E_SIGNAL_MAX
 } mobile_ap_sig_e;
 
-#define TETHERING_SERVICE_OBJECT_PATH  "/Tethering"
-#define TETHERING_SERVICE_NAME         "org.tizen.tethering"
+#define TETHERING_SERVICE_OBJECT_PATH  "/MobileapAgent"
+#define TETHERING_SERVICE_NAME         "org.tizen.MobileapAgent"
 #define TETHERING_SERVICE_INTERFACE    "org.tizen.tethering"
 
 #define TETHERING_SIGNAL_MATCH_RULE    "type='signal',interface='org.tizen.tethering'"
index d55ec55..054c177 100755 (executable)
@@ -488,7 +488,9 @@ static void __print_wifi_tethering_setting(tethering_h th)
        char *passphrase = NULL;
        bool visibility = false;
        bool mac_filter = 0;
+       int channel = 0;
        tethering_wifi_security_type_e security_type = TETHERING_WIFI_SECURITY_TYPE_NONE;
+       tethering_wifi_mode_type_e hw_mode = TETHERING_WIFI_MODE_TYPE_G;
 
        int error = TETHERING_ERROR_NONE;
 
@@ -527,6 +529,18 @@ static void __print_wifi_tethering_setting(tethering_h th)
                g_print("\t** WiFi tethering mac filter : %s\n",
                                mac_filter ? "enable" : "disable");
 
+       error = tethering_wifi_get_mode(th, &hw_mode);
+       if (error != TETHERING_ERROR_NONE)
+               __is_err(error);
+       else
+                g_print("\t** WiFi tethering mode : %d\n", hw_mode);
+
+       error = tethering_wifi_get_channel(th, &channel);
+       if (error != TETHERING_ERROR_NONE)
+               __is_err(error);
+       else
+                g_print("\t** WiFi tethering channel : %d\n", channel);
+
        if (ssid)
                free(ssid);
        if (passphrase)