Change dbus service name for mobileap-agent and add test case for getting channel... 73/59373/2
authorSeonah Moon <seonah1.moon@samsung.com>
Mon, 15 Feb 2016 06:28:35 +0000 (15:28 +0900)
committerSeonah Moon <seonah1.moon@samsung.com>
Wed, 24 Feb 2016 02:13:10 +0000 (11:13 +0900)
Change-Id: I1be7ad95ef6e5b799cf0cd0444b0a15268e5849b
Signed-off-by: Seonah Moon <seonah1.moon@samsung.com>
include/tethering_private.h
packaging/capi-network-tethering.spec
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 9c1a172..959bcdb 100644 (file)
@@ -1,6 +1,6 @@
 Name:          capi-network-tethering
 Summary:       Tethering Framework
-Version:       1.0.31
+Version:       1.0.32
 Release:       1
 Group:         System/Network
 License:       Apache-2.0
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)