From: hyunuk.tak Date: Tue, 10 Sep 2019 06:48:43 +0000 (+0900) Subject: Remove deprecated stc_get_stats() X-Git-Tag: submit/tizen/20191014.135557^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9e8e4bd30576a313ab3943a118c86cb56d008602;p=platform%2Fcore%2Fapi%2Fsmart-traffic-control.git Remove deprecated stc_get_stats() Change-Id: I0b9f19f58703e2ae4ea4fd4f55465502bce6eaa7 Signed-off-by: hyunuk.tak --- diff --git a/include/stc.h b/include/stc.h index 9a12bde..686a562 100755 --- a/include/stc.h +++ b/include/stc.h @@ -231,7 +231,6 @@ typedef enum { * @return #STC_CALLBACK_CONTINUE to continue with the next iteration of the loop, * otherwise #STC_CALLBACK_CANCEL to break out of the loop * - * @pre stc_get_stats() will invoke this callback. * @pre stc_foreach_stats() will invoke this callback. * @see stc_stats_info_get_app_id() * @see stc_stats_info_get_iface_name() @@ -241,7 +240,6 @@ typedef enum { * @see stc_stats_info_get_roaming_type() * @see stc_stats_info_get_protocol_type() * @see stc_stats_info_get_process_state() - * @see stc_get_stats() */ typedef stc_callback_ret_e (*stc_stats_info_cb)( stc_error_e result, stc_stats_info_h info, void *user_data); @@ -417,7 +415,6 @@ int stc_get_stats(stc_h stc, stc_stats_rule_h rule, * @see stc_stats_rule_get_iface_type() * @see stc_stats_rule_get_time_period() * @see stc_stats_info_cb() - * @see stc_get_stats() */ int stc_foreach_stats(stc_h stc, stc_stats_rule_h rule, stc_stats_info_cb info_cb, void *user_data) TIZEN_DEPRECATED_API; @@ -524,7 +521,6 @@ int stc_foreach_all_stats(stc_all_stats_info_h info, * @see stc_stats_rule_get_iface_type() * @see stc_stats_rule_get_time_period() * @see stc_stats_info_cb() - * @see stc_get_stats() */ int stc_get_total_stats(stc_h stc, stc_stats_rule_h rule, stc_stats_info_cb info_cb, void *user_data) TIZEN_DEPRECATED_API;