From: hyunuktak Date: Wed, 23 Mar 2016 23:57:09 +0000 (+0900) Subject: Changed wearable 3.0 API version X-Git-Tag: submit/tizen/20160324.001938^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d357ca4991d2e32444ca6caeb66211f0815191d6;p=platform%2Fcore%2Fapi%2Fwifi.git Changed wearable 3.0 API version Change-Id: I7666444e2da7e4684534b53fa9993dacb0799fa0 Signed-off-by: hyunuktak --- diff --git a/include/wifi.h b/include/wifi.h index d082d8c..2c9f627 100755 --- a/include/wifi.h +++ b/include/wifi.h @@ -576,7 +576,7 @@ int wifi_scan(wifi_scan_finished_cb callback, void *user_data); /** * @brief Starts specific ap scan, asynchronously. - * @since_tizen 2.4 + * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 * @privlevel public * @privilege %http://tizen.org/privilege/network.set \n * %http://tizen.org/privilege/network.get @@ -631,7 +631,7 @@ int wifi_foreach_found_aps(wifi_found_ap_cb callback, void *user_data); /** * @brief Gets the result of specific ap scan. - * @since_tizen 2.4 + * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 * @privlevel public * @privilege %http://tizen.org/privilege/network.get * @param[in] callback The callback to be called @@ -1657,7 +1657,7 @@ int wifi_ap_set_eap_auth_type(wifi_ap_h ap, wifi_eap_auth_type_e type); /** * @brief Gets access point configuration handle. - * @since_tizen 2.4 + * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 * @remarks You must release @a config using wifi_config_destroy(). * * @param[in] name The access point name @@ -1678,7 +1678,7 @@ int wifi_config_create(const char *name, const char *passphrase, wifi_security_t /** * @brief Clones the access point configuration handle. - * @since_tizen 2.4 + * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 * @remarks You must release @a cloned_config using wifi_config_destroy(). * * @param[in] origin The origin access point configuration handle @@ -1696,7 +1696,7 @@ int wifi_config_clone(wifi_config_h origin, wifi_config_h *cloned_config); /** * @brief Destroys the access point configuration handle. - * @since_tizen 2.4 + * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 * * @param[in] config The access point configuration handle * @@ -1712,7 +1712,7 @@ int wifi_config_destroy(wifi_config_h config); /** * @brief Saves Wi-Fi configuration of access point. - * @since_tizen 2.4 + * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 * @privlevel public * @privilege %http://tizen.org/privilege/network.profile * @@ -1730,7 +1730,7 @@ int wifi_config_save_configuration(wifi_config_h config); /** * @brief Gets the result of access point configurations repeatedly. - * @since_tizen 2.4 + * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 * @privlevel public * @privilege %http://tizen.org/privilege/network.profile * @@ -1751,7 +1751,7 @@ int wifi_config_foreach_configuration(wifi_config_list_cb callback, void *user_d /** * @brief Gets the name of access point from configuration. - * @since_tizen 2.4 + * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 * @remarks You must release @a name using free(). * * @param[in] config The access point configuration handle @@ -1768,7 +1768,7 @@ int wifi_config_get_name(wifi_config_h config, char **name); /** * @brief Gets the security type of access point from configuration. - * @since_tizen 2.4 + * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 * * @param[in] config The access point configuration handle * @param[out] security_type The security type of access point @@ -1783,7 +1783,7 @@ int wifi_config_get_security_type(wifi_config_h config, wifi_security_type_e *se /** * @brief Sets access point proxy address configuration. - * @since_tizen 2.4 + * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 * @privlevel public * @privilege %http://tizen.org/privilege/network.profile * @@ -1803,7 +1803,7 @@ int wifi_config_set_proxy_address(wifi_config_h config, wifi_address_family_e ad /** * @brief Gets the proxy address of access point from configuration. - * @since_tizen 2.4 + * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 * @remarks You must release @a proxy_address using free(). * * @param[in] config The access point configuration handle @@ -1821,7 +1821,7 @@ int wifi_config_get_proxy_address(wifi_config_h config, wifi_address_family_e *a /** * @brief Sets the hidden property of access point from the configuration. - * @since_tizen 2.4 + * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 * @privlevel public * @privilege %http://tizen.org/privilege/network.profile * @@ -1839,7 +1839,7 @@ int wifi_config_set_hidden_ap_property(wifi_config_h config, bool is_hidden); /** * @brief Gets the hidden property of access point from the configuration. - * @since_tizen 2.4 + * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 * * @param[in] config The access point configuration handle * @param[out] is_hidden The hidden property of access point @@ -1854,7 +1854,7 @@ int wifi_config_get_hidden_ap_property(wifi_config_h config, bool *is_hidden); /** * @brief Gets access point anonymous identity from configuration. - * @since_tizen 2.4 + * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 * @remarks You must release @a anonymous_identity using free(). * * @param[in] config The access point configuration handle @@ -1868,7 +1868,7 @@ int wifi_config_get_eap_anonymous_identity(wifi_config_h config, char** anonymou /** * @brief Sets access point anonymous identity to configuration. - * @since_tizen 2.4 + * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 * @privlevel public * @privilege %http://tizen.org/privilege/network.profile * @@ -1884,7 +1884,7 @@ int wifi_config_set_eap_anonymous_identity(wifi_config_h config, const char* ano /** * @brief Gets access point cacert file from configuration. - * @since_tizen 2.4 + * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 * @remarks You must release @a ca_cert using free(). * @remarks The mediastorage privilege http://tizen.org/privilege/mediastorage is needed \n * if @a image_path is relevant to media storage.\n @@ -1902,7 +1902,7 @@ int wifi_config_get_eap_ca_cert_file(wifi_config_h config, char** ca_cert); /** * @brief Sets access point cacert file to configuration. - * @since_tizen 2.4 + * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 * @privlevel public * @privilege %http://tizen.org/privilege/network.profile * @remarks The mediastorage privilege http://tizen.org/privilege/mediastorage is needed \n @@ -1922,7 +1922,7 @@ int wifi_config_set_eap_ca_cert_file(wifi_config_h config, const char* ca_cert); /** * @brief Gets access point client cert file from configuration. - * @since_tizen 2.4 + * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 * @remarks You must release @a client_crt using free(). * * @param[in] config The access point configuration handle @@ -1936,7 +1936,7 @@ int wifi_config_get_eap_client_cert_file(wifi_config_h config, char** client_cer /** * @brief Sets access point client cert file to configuration. - * @since_tizen 2.4 + * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 * @privlevel public * @privilege %http://tizen.org/privilege/network.profile * @@ -1953,7 +1953,7 @@ int wifi_config_set_eap_client_cert_file(wifi_config_h config, const char* priva /** * @brief Gets access point identity from configuration. - * @since_tizen 2.4 + * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 * @remarks You must release @a identity using free(). * * @param[in] config The access point configuration handle @@ -1967,7 +1967,7 @@ int wifi_config_get_eap_identity(wifi_config_h config, char** identity); /** * @brief Sets access point identity to configuration. - * @since_tizen 2.4 + * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 * @privlevel public * @privilege %http://tizen.org/privilege/network.profile * @@ -1983,7 +1983,7 @@ int wifi_config_set_eap_identity(wifi_config_h config, const char* identity); /** * @brief Gets access point eap type from configuration. - * @since_tizen 2.4 + * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 * * @param[in] config The access point configuration handle * @param[out] eap_type The eap type of access point @@ -1996,7 +1996,7 @@ int wifi_config_get_eap_type(wifi_config_h config, wifi_eap_type_e *eap_type); /** * @brief Sets access point eap type to configuration. - * @since_tizen 2.4 + * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 * @privlevel public * @privilege %http://tizen.org/privilege/network.profile * @@ -2012,7 +2012,7 @@ int wifi_config_set_eap_type(wifi_config_h config, wifi_eap_type_e eap_type); /** * @brief Gets access point eap auth type from configuration. - * @since_tizen 2.4 + * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 * * @param[in] config The access point configuration handle * @param[out] eap_auth_type The eap auth type of access point @@ -2025,7 +2025,7 @@ int wifi_config_get_eap_auth_type(wifi_config_h config, wifi_eap_auth_type_e* ea /** * @brief Sets access point eap auth type to configuration. - * @since_tizen 2.4 + * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 * @privlevel public * @privilege %http://tizen.org/privilege/network.profile * @@ -2041,7 +2041,7 @@ int wifi_config_set_eap_auth_type(wifi_config_h config, wifi_eap_auth_type_e eap /** * @brief Gets access point subject match from configuration. - * @since_tizen 2.4 + * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 * @remarks You must release @a subject_match using free(). * * @param[in] config The access point configuration handle @@ -2055,7 +2055,7 @@ int wifi_config_get_eap_subject_match(wifi_config_h config, char** subject_match /** * @brief Sets access point subject match to configuration. - * @since_tizen 2.4 + * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 * @privlevel public * @privilege %http://tizen.org/privilege/network.profile * diff --git a/packaging/capi-network-wifi.spec b/packaging/capi-network-wifi.spec index f8c4b8a..17602cd 100755 --- a/packaging/capi-network-wifi.spec +++ b/packaging/capi-network-wifi.spec @@ -1,6 +1,6 @@ Name: capi-network-wifi Summary: Network Wi-Fi library in TIZEN C API -Version: 1.0.69 +Version: 1.0.70 Release: 1 Group: System/Network License: Apache-2.0