X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=include%2Fnet_connection_private.h;h=a5b59bec40b6c0f11e351e8209515c68e3ab7b98;hb=3b04e6c4e6b4a4b01a705f4396d3483de1d3eb56;hp=dfb2e4f1c49da01af120ad36a2387cf752c275ca;hpb=9d8a7c3f55892952fe9272fbd91cf9fd698fdb6b;p=platform%2Fcore%2Fapi%2Fconnection.git diff --git a/include/net_connection_private.h b/include/net_connection_private.h index dfb2e4f..a5b59be 100755 --- a/include/net_connection_private.h +++ b/include/net_connection_private.h @@ -38,19 +38,17 @@ extern "C" { #define ETHERNET_MAC_INFO_FILE "/sys/class/net/eth0/address" #define WIFI_MAC_INFO_FILE "/sys/class/net/wlan0/address" -#define TELEPHONY_FEATURE "http://tizen.org/feature/network.telephony" -#define WIFI_FEATURE "http://tizen.org/feature/network.wifi" +#define TELEPHONY_FEATURE "http://tizen.org/feature/network.telephony" +#define WIFI_FEATURE "http://tizen.org/feature/network.wifi" #define TETHERING_BLUETOOTH_FEATURE "http://tizen.org/feature/network.tethering.bluetooth" #define ETHERNET_FEATURE "http://tizen.org/feature/network.ethernet" -typedef enum -{ +typedef enum { CONNECTION_CELLULAR_SUBSCRIBER_1 = 0x00, CONNECTION_CELLULAR_SUBSCRIBER_2 = 0x01, } connection_cellular_subscriber_id_e; -typedef enum -{ +typedef enum { CONNECTION_SUPPORTED_FEATURE_TELEPHONY, CONNECTION_SUPPORTED_FEATURE_WIFI, CONNECTION_SUPPORTED_FEATURE_TETHERING_BLUETOOTH, @@ -61,9 +59,15 @@ typedef enum #define CHECK_FEATURE_SUPPORTED(...) \ do { \ int rv = _connection_check_feature_supported(__VA_ARGS__, NULL); \ - if( rv != CONNECTION_ERROR_NONE ) \ + if (rv != CONNECTION_ERROR_NONE) \ return rv; \ - } while(0) + } while (0) + +#define DEPRECATED_LOG(origin, substitution) \ + do { \ + LOGW("DEPRECATION WARNING: %s() is deprecated and will be removed " \ + "from next release. Use %s() instead", origin, substitution); \ + } while (0) #define CONNECTION_LOG(log_level, format, args...) \ do { \ @@ -77,7 +81,7 @@ typedef enum default: \ LOGI(format, ## args); \ } \ - } while(0) + } while (0) #define SECURE_CONNECTION_LOG(log_level, format, args...) \ do { \ @@ -91,7 +95,7 @@ typedef enum default: \ SECURE_LOGI(format, ## args); \ } \ - } while(0) + } while (0) #define VCONF_TELEPHONY_DEFAULT_DATA_SERVICE \ "db/telephony/dualsim/default_data_service" @@ -100,67 +104,96 @@ typedef struct _connection_handle_s { connection_type_changed_cb type_changed_callback; connection_address_changed_cb ip_changed_callback; connection_address_changed_cb proxy_changed_callback; - connection_ethernet_cable_state_chaged_cb ethernet_cable_state_changed_callback; + connection_ethernet_cable_state_changed_cb ethernet_cable_state_changed_callback; + connection_set_default_cb set_default_callback; + connection_opened_cb opened_callback; + connection_closed_cb closed_callback; + connection_opened_cb reset_callback; void *type_changed_user_data; void *ip_changed_user_data; void *proxy_changed_user_data; void *ethernet_cable_state_changed_user_data; -} connection_handle_s; - -typedef void(*libnet_ethernet_cable_state_changed_cb) - (connection_ethernet_cable_state_e state); + void *set_default_user_data; + void *opened_user_data; + void *closed_user_data; + void *reset_user_data; -bool _connection_is_created(void); + void *network_info_handle; +} connection_handle_s; -int _connection_libnet_init(void); -bool _connection_libnet_deinit(void); -int _connection_libnet_get_wifi_state(connection_wifi_state_e *state); -int _connection_libnet_get_ethernet_state(connection_ethernet_state_e *state); -int _connection_libnet_get_ethernet_cable_state(connection_ethernet_cable_state_e* state); -int _connection_libnet_set_ethernet_cable_state_changed_cb( - libnet_ethernet_cable_state_changed_cb callback); -int _connection_libnet_get_bluetooth_state(connection_bt_state_e* state); +int _connection_libnet_init(connection_handle_s *conn_handle); +bool _connection_libnet_deinit(connection_handle_s *conn_handle); +void _connection_set_cs_tid(int tid, connection_handle_s *conn_handle); +void _connection_unset_cs_tid(int tid, connection_handle_s *conn_handle); +int _connection_libnet_get_metered_state(connection_handle_s *conn_handle, bool* is_metered); +int _connection_libnet_get_wifi_state(connection_handle_s *conn_handle, connection_wifi_state_e *state); +int _connection_libnet_get_ethernet_state(connection_handle_s *conn_handle, + connection_ethernet_state_e *state); +int _connection_libnet_get_ethernet_cable_state(connection_handle_s *conn_handle, + connection_ethernet_cable_state_e* state); +int _connection_libnet_get_bluetooth_state(connection_handle_s *conn_handle, connection_bt_state_e* state); bool _connection_libnet_check_profile_validity(connection_profile_h profile); -bool _connection_libnet_check_profile_cb_validity(connection_profile_h profile); -int _connection_libnet_get_profile_iterator(connection_iterator_type_e type, - connection_profile_iterator_h *profile_iterator); +int _connection_libnet_get_profile_iterator(connection_handle_s *conn_handle, + connection_iterator_type_e type, connection_profile_iterator_h *profile_iterator); bool _connection_libnet_iterator_has_next(connection_profile_iterator_h profile_iterator); -int _connection_libnet_get_iterator_next(connection_profile_iterator_h profile_iter_h, connection_profile_h *profile); +int _connection_libnet_get_iterator_next(connection_profile_iterator_h profile_iter_h, + connection_profile_h *profile); int _connection_libnet_destroy_iterator(connection_profile_iterator_h profile_iter_h); -int _connection_libnet_get_current_profile(connection_profile_h *profile); -int _connection_libnet_reset_profile(connection_reset_option_e type, connection_cellular_subscriber_id_e id, connection_reset_cb callback, void *user_data); -int _connection_libnet_open_profile(connection_profile_h profile, connection_opened_cb callback, void *user_data); -int _connection_libnet_get_cellular_service_profile(connection_cellular_service_type_e type, connection_profile_h *profile); -int _connection_libnet_set_cellular_service_profile_sync(connection_cellular_service_type_e type, connection_profile_h profile); -int _connection_libnet_set_cellular_service_profile_async(connection_cellular_service_type_e type, - connection_profile_h profile, connection_set_default_cb callback, void* user_data); -int _connection_libnet_close_profile(connection_profile_h profile, connection_closed_cb callback, void *user_data); -int _connection_libnet_add_route(const char *interface_name, const char *host_address); -int _connection_libnet_remove_route(const char *interface_name, const char *host_address); -int _connection_libnet_add_route_ipv6(const char *interface_name, const char *host_address, const char * gateway); -int _connection_libnet_remove_route_ipv6(const char *interface_name, const char *host_address, const char * gateway); +int _connection_libnet_get_current_profile(connection_handle_s *conn_handle, + connection_profile_h *profile); +int _connection_libnet_reset_profile(connection_handle_s *conn_handle, + connection_reset_option_e type, connection_cellular_subscriber_id_e id); +int _connection_libnet_open_profile(connection_handle_s *conn_handle, + connection_profile_h profile); +int _connection_libnet_get_cellular_service_profile(connection_handle_s *conn_handle, + connection_cellular_service_type_e type, connection_profile_h *profile); +int _connection_libnet_set_cellular_service_profile_sync(connection_handle_s *conn_handle, + connection_cellular_service_type_e type, connection_profile_h profile); +int _connection_libnet_set_cellular_service_profile_async(connection_handle_s *conn_handle, + connection_cellular_service_type_e type, connection_profile_h profile); +int _connection_libnet_close_profile(connection_handle_s *conn_handle, connection_profile_h profile); +int _connection_libnet_add_route(connection_handle_s *conn_handle, + const char *interface_name, const char *host_address); +int _connection_libnet_remove_route(connection_handle_s *conn_handle, + const char *interface_name, const char *host_address); +int _connection_libnet_add_route_ipv6(connection_handle_s *conn_handle, + const char *interface_name, const char *host_address, const char * gateway); +int _connection_libnet_remove_route_ipv6(connection_handle_s *conn_handle, + const char *interface_name, const char *host_address, const char * gateway); +int _connection_libnet_add_route_entry(connection_handle_s *conn_handle, + connection_address_family_e address_family, const char *interface_name, + const char *host_address, const char * gateway); +int _connection_libnet_remove_route_entry(connection_handle_s *conn_handle, + connection_address_family_e address_family, const char *interface_name, + const char *host_address, const char * gateway); void _connection_libnet_add_to_profile_list(connection_profile_h profile); void _connection_libnet_remove_from_profile_list(connection_profile_h profile); bool _connection_libnet_add_to_profile_cb_list(connection_profile_h profile, - connection_profile_state_changed_cb callback, void *user_data); + connection_profile_state_changed_cb callback, void *user_data); bool _connection_libnet_remove_from_profile_cb_list(connection_profile_h profile); -int _connection_libnet_set_statistics(net_device_t device_type, net_statistics_type_e statistics_type); -int _connection_libnet_get_statistics(net_statistics_type_e statistics_type, unsigned long long *size); -int _connection_libnet_check_get_privilege(); -int _connection_libnet_check_profile_privilege(); +int _connection_libnet_set_statistics(connection_handle_s *conn_handle, + net_device_t device_type, net_statistics_type_e statistics_type); +int _connection_libnet_get_statistics(connection_handle_s *conn_handle, + net_statistics_type_e statistics_type, unsigned long long *size); +int _connection_libnet_check_get_privilege(void); +int _connection_libnet_check_profile_privilege(void); int _connection_check_feature_supported(const char *feature_name, ...); -guint _connection_callback_add(GSourceFunc func, gpointer user_data); -void _connection_callback_cleanup(void); - connection_cellular_service_type_e _profile_convert_to_connection_cellular_service_type(net_service_type_t svc_type); connection_profile_state_e _profile_convert_to_cp_state(net_state_type_t state); net_service_type_t _connection_profile_convert_to_libnet_cellular_service_type(connection_cellular_service_type_e svc_type); net_state_type_t _connection_profile_convert_to_net_state(connection_profile_state_e state); -int _connection_libnet_set_cellular_subscriber_id(connection_profile_h profile, connection_cellular_subscriber_id_e sim_id); +int _connection_libnet_set_cellular_subscriber_id(connection_profile_h profile, + connection_cellular_subscriber_id_e sim_id); + +int _connection_libnet_start_tcpdump(connection_handle_s *conn_handle); +int _connection_libnet_stop_tcpdump(connection_handle_s *conn_handle); +int _connection_libnet_get_tcpdump_state(connection_handle_s *conn_handle, + gboolean *tcpdump_state); +bool _connection_check_handle_validity(connection_h connection); #ifdef __cplusplus } #endif /* __cplusplus */