Add struct to scan bss info 84/40184/1 submit/tizen/20150601.041432
authorhyunuktak <hyunuk.tak@samsung.com>
Mon, 1 Jun 2015 02:17:14 +0000 (11:17 +0900)
committerhyunuktak <hyunuk.tak@samsung.com>
Mon, 1 Jun 2015 02:17:45 +0000 (11:17 +0900)
Signed-off-by: hyunuktak <hyunuk.tak@samsung.com>
Change-Id: I3c6eba643b908addfc371e114729ddd6a0866166

include/wifi/network-wifi-intf.h
packaging/libnet-client.spec
src/network-dbus-request.c

index 2ae2181..d2ce56b 100644 (file)
@@ -117,6 +117,12 @@ typedef struct {
        wlan_security_info_t security_info;
 } net_wifi_connection_info_t;
 
+struct ssid_scan_bss_info_t {
+       char ssid[NET_WLAN_ESSID_LEN + 1];
+       wlan_security_mode_type_t security;
+       char wps;
+};
+
 /*****************************************************************************
  *     Typedefs 
  *****************************************************************************/
index eaf01c4..cdbc405 100755 (executable)
@@ -1,6 +1,6 @@
 Name:       libnet-client
 Summary:    Network Client library (Shared library)
-Version:    0.1.77_57
+Version:    0.1.77_58
 Release:    0
 Group:      System/Network
 License:    Flora License
index 11fb0cc..6ca0b4c 100644 (file)
@@ -410,9 +410,9 @@ static void __net_specific_scan_wifi_reply(GObject *source_object, GAsyncResult
                g_variant_unref(dbus_result);
 
        if (Error != NET_ERR_NONE)
-               NETWORK_LOG(NETWORK_ERROR, "Find hidden AP failed. Error [%d]\n", Error);
+               NETWORK_LOG(NETWORK_ERROR, "Find specific AP failed[%d]", Error);
        else
-               NETWORK_LOG(NETWORK_LOW, "Hidden AP found\n");
+               NETWORK_LOG(NETWORK_LOW, "Specific AP found");
 
        if (request_table[NETWORK_REQUEST_TYPE_SPECIFIC_SCAN].flag == TRUE) {
                if (NET_ERR_NONE != Error) {