- Fix missing 'wifi_' prefix problem
authorsaerome kim <saerome.kim@samsung.com>
Thu, 6 Jul 2017 01:58:40 +0000 (10:58 +0900)
committersaerome.kim <saerome.kim@samsung.com>
Mon, 17 Jul 2017 02:09:10 +0000 (11:09 +0900)
Signed-off-by: saerome kim <saerome.kim@samsung.com>
include/wifi-mesh-internal.h
test/wifi-mesh-network.c

index 816a838..e13f2ee 100644 (file)
@@ -46,13 +46,13 @@ typedef enum {
  * @brief The mesh station information handle.
  * @since_tizen 4.0
 */
-typedef void* mesh_station_info_h;
+typedef void* wifi_mesh_station_info_h;
 
 /**
  * @brief The mesh path information handle.
  * @since_tizen 4.0
 */
-typedef void* mesh_mpath_info_h;
+typedef void* wifi_mesh_mpath_info_h;
 
 /**
  * @brief Gets the maximum data rate.
@@ -169,7 +169,7 @@ int wifi_mesh_unset_gate(wifi_mesh_h handle);
  *
  * @see wifi_mesh_foreach_found_network()
  */
-typedef void (*wifi_mesh_found_station_cb)(mesh_station_info_h station, void* user_data);
+typedef void (*wifi_mesh_found_station_cb)(wifi_mesh_station_info_h station, void* user_data);
 
 /**
  * @brief Get information of all connected stations.
@@ -205,7 +205,7 @@ int wifi_mesh_get_stations_info(wifi_mesh_h handle, wifi_mesh_found_station_cb c
  *
  * @see wifi_mesh_foreach_found_network()
  */
-typedef void (*mesh_found_mpath_cb)(mesh_mpath_info_h path, void* user_data);
+typedef void (*mesh_found_mpath_cb)(wifi_mesh_mpath_info_h path, void* user_data);
 
 /**
  * @brief Get information of all mesh paths.
index 17bd98e..b93be11 100644 (file)
@@ -98,12 +98,12 @@ static void connected_peer_cb(wifi_mesh_peer_h peer, void* user_data)
                free(address);
 }
 
-static void found_station_cb(mesh_station_info_h station, void* user_data)
+static void found_station_cb(wifi_mesh_station_info_h station, void* user_data)
 {
        msg("Station Information Received: %p", station);
 }
 
-static void found_mpath_cb(mesh_mpath_info_h mpath, void* user_data)
+static void found_mpath_cb(wifi_mesh_mpath_info_h mpath, void* user_data)
 {
        msg("Station Information Received: %p", mpath);
 }