summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorByungWoo Lee <bw1212.lee@samsung.com>2012-02-21 11:30:05 +0900
committerByungWoo Lee <bw1212.lee@samsung.com>2012-02-21 11:30:05 +0900
commitbb98cc7be09896b2ba5ad4a338cf641f2ba0802e (patch)
treeb3d6581fd5b63d1f08eb24f7ccddf23668bd6a03
parent0ed1b013e7bb03e4ee448d62c0b1f69e05953963 (diff)
downloadconnection-bb98cc7be09896b2ba5ad4a338cf641f2ba0802e.tar.gz
connection-bb98cc7be09896b2ba5ad4a338cf641f2ba0802e.tar.bz2
connection-bb98cc7be09896b2ba5ad4a338cf641f2ba0802e.zip
Convert internal symbol to static
-rw-r--r--debian/changelog8
-rwxr-xr-xsrc/connection.c46
2 files changed, 31 insertions, 23 deletions
diff --git a/debian/changelog b/debian/changelog
index aba5877..3fab06c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+capi-network-connection (0.1.0-17) unstable; urgency=low
+
+ * Convert internal symbol to static
+ * Git: slp/api/connection
+ * Tag: capi-network-connection_0.1.0-17
+
+ -- ByungWoo Lee <bw1212.lee@samsung.com> Mon, 20 Feb 2012 17:55:42 +0900
+
capi-network-connection (0.1.0-16) unstable; urgency=low
* Add versioning of library
diff --git a/src/connection.c b/src/connection.c
index 50eb66b..4ab566f 100755
--- a/src/connection.c
+++ b/src/connection.c
@@ -23,10 +23,10 @@
#define TIZEN_N_CONNECTION "CAPI_NETWORK_CONNECTION"
-void connection_cb_net_config_change_cb(keynode_t *node, void *user_data);
+static void __connection_cb_net_config_change_cb(keynode_t *node, void *user_data);
// API to convert error codes back and forth
-int convert_error_code(int dnet_error_code)
+static int __convert_error_code(int dnet_error_code)
{
switch(dnet_error_code)
{
@@ -39,7 +39,7 @@ int convert_error_code(int dnet_error_code)
}
}
-int connection_set_callbacks(connection_h handle, void *callback, void *user_data)
+static int __connection_set_callbacks(connection_h handle, void *callback, void *user_data)
{
if(handle!=NULL)
{
@@ -51,13 +51,13 @@ int connection_set_callbacks(connection_h handle, void *callback, void *user_dat
// This single vconf key will notify
// network status, ip and proxy changes.
vconf_notify_key_changed(VCONFKEY_NETWORK_CONFIGURATION_CHANGE_IND,
- connection_cb_net_config_change_cb,
+ __connection_cb_net_config_change_cb,
local_handle);
}
else
{
vconf_ignore_key_changed(VCONFKEY_NETWORK_CONFIGURATION_CHANGE_IND,
- connection_cb_net_config_change_cb);
+ __connection_cb_net_config_change_cb);
}
return (CONNECTION_ERROR_NONE);
}
@@ -71,21 +71,21 @@ int connection_set_cb(connection_h handle, connection_cb callback, void *user_da
{
int retval = CONNECTION_ERROR_NONE;
- retval = connection_set_callbacks(handle, callback, user_data);
+ retval = __connection_set_callbacks(handle, callback, user_data);
- return convert_error_code(retval);
+ return __convert_error_code(retval);
}
int connection_unset_cb(connection_h handle)
{
int retval = CONNECTION_ERROR_NONE;
- retval = connection_set_callbacks(handle, NULL, NULL);
+ retval = __connection_set_callbacks(handle, NULL, NULL);
- return convert_error_code(retval);
+ return __convert_error_code(retval);
}
-void connection_cb_net_config_change_cb(keynode_t *node, void *user_data)
+static void __connection_cb_net_config_change_cb(keynode_t *node, void *user_data)
{
LOGI(TIZEN_N_CONNECTION,"Net Status Indication\n");
if((user_data!=NULL))
@@ -253,7 +253,7 @@ int connection_get_proxy(connection_h handle, char **proxy)
return (CONNECTION_ERROR_INVALID_PARAMETER);
}
-int fill_call_statistic(connection_h handle, stat_request_e member, int *value)
+static int __fill_call_statistic(connection_h handle, stat_request_e member, int *value)
{
if(handle && value)
{
@@ -352,60 +352,60 @@ int fill_call_statistic(connection_h handle, stat_request_e member, int *value)
int connection_get_last_datacall_duration(connection_h handle, int *value)
{
- return fill_call_statistic(handle, LAST_DATACALL_DURATION, value);
+ return __fill_call_statistic(handle, LAST_DATACALL_DURATION, value);
}
int connection_get_last_received_data_size(connection_h handle, int *value)
{
- return fill_call_statistic(handle, LAST_RECEIVED_DATA_SIZE, value);
+ return __fill_call_statistic(handle, LAST_RECEIVED_DATA_SIZE, value);
}
int connection_get_last_sent_data_size(connection_h handle, int *value)
{
- return fill_call_statistic(handle, LAST_SENT_DATA_SIZE, value);
+ return __fill_call_statistic(handle, LAST_SENT_DATA_SIZE, value);
}
int connection_get_total_datacall_duration(connection_h handle, int *value)
{
- return fill_call_statistic(handle, TOTAL_DATACALL_DURATION, value);
+ return __fill_call_statistic(handle, TOTAL_DATACALL_DURATION, value);
}
int connection_get_total_received_data_size (connection_h handle, int *value)
{
- return fill_call_statistic(handle, TOTAL_RECEIVED_DATA_SIZE, value);
+ return __fill_call_statistic(handle, TOTAL_RECEIVED_DATA_SIZE, value);
}
int connection_get_total_sent_data_size (connection_h handle, int *value)
{
- return fill_call_statistic(handle, TOTAL_SENT_DATA_SIZE, value);
+ return __fill_call_statistic(handle, TOTAL_SENT_DATA_SIZE, value);
}
int connection_get_wifi_last_datacall_duration(connection_h handle, int *value)
{
- return fill_call_statistic(handle, LAST_WIFI_DATACALL_DURATION, value);
+ return __fill_call_statistic(handle, LAST_WIFI_DATACALL_DURATION, value);
}
int connection_get_wifi_last_received_data_size(connection_h handle, int *value)
{
- return fill_call_statistic(handle, LAST_WIFI_RECEIVED_DATA_SIZE, value);
+ return __fill_call_statistic(handle, LAST_WIFI_RECEIVED_DATA_SIZE, value);
}
int connection_get_wifi_last_sent_data_size(connection_h handle, int *value)
{
- return fill_call_statistic(handle, LAST_WIFI_SENT_DATA_SIZE, value);
+ return __fill_call_statistic(handle, LAST_WIFI_SENT_DATA_SIZE, value);
}
int connection_get_wifi_total_datacall_duration(connection_h handle, int *value)
{
- return fill_call_statistic(handle, TOTAL_WIFI_DATACALL_DURATION, value);
+ return __fill_call_statistic(handle, TOTAL_WIFI_DATACALL_DURATION, value);
}
int connection_get_wifi_total_received_data_size (connection_h handle, int *value)
{
- return fill_call_statistic(handle, TOTAL_WIFI_RECEIVED_DATA_SIZE, value);
+ return __fill_call_statistic(handle, TOTAL_WIFI_RECEIVED_DATA_SIZE, value);
}
int connection_get_wifi_total_sent_data_size (connection_h handle, int *value)
{
- return fill_call_statistic(handle, TOTAL_WIFI_SENT_DATA_SIZE, value);
+ return __fill_call_statistic(handle, TOTAL_WIFI_SENT_DATA_SIZE, value);
}