Tizen Native API
7.0
|
The cion client API provides functions for cion client.
Required Header
#include <cion.h>
Overview
The cion client can request to connect to server and send or receive data. It provides functions to create cion client and communication APIs.
Functions | |
int | cion_client_create (cion_client_h *client, const char *service_name, cion_security_h security) |
Creates a Cion client handle. | |
int | cion_client_destroy (cion_client_h client) |
Destroys the Cion client handle. | |
int | cion_client_try_discovery (cion_client_h client, cion_client_server_discovered_cb cb, void *user_data) |
Tries to discover a Cion server. | |
int | cion_client_stop_discovery (cion_client_h client) |
Stops to discovery Cion server. | |
int | cion_client_connect (cion_client_h client, const cion_peer_info_h peer_info) |
Tries to connect to the Cion server. | |
int | cion_client_disconnect (cion_client_h client) |
Disconnects from a server. | |
int | cion_client_send_data (cion_client_h client, unsigned char *data, unsigned int data_size, int timeout, unsigned char **return_data, unsigned int *return_data_size) |
Sends the data. | |
int | cion_client_send_payload_async (cion_client_h client, cion_payload_h payload, cion_client_payload_async_result_cb cb, void *user_data) |
Sends the payload asynchronously. | |
int | cion_client_add_connection_result_cb (cion_client_h client, cion_client_connection_result_cb cb, void *user_data) |
Adds callback function for connection result. | |
int | cion_client_remove_connection_result_cb (cion_client_h client, cion_client_connection_result_cb cb) |
Removes callback function for connection result. | |
int | cion_client_add_payload_received_cb (cion_client_h client, cion_client_payload_received_cb cb, void *user_data) |
Adds callback function to receive payload. | |
int | cion_client_remove_payload_received_cb (cion_client_h client, cion_client_payload_received_cb cb) |
Removes callback function to receive payload. | |
int | cion_client_add_disconnected_cb (cion_client_h client, cion_client_disconnected_cb cb, void *user_data) |
Adds callback function for disconnection event. | |
int | cion_client_remove_disconnected_cb (cion_client_h client, cion_client_disconnected_cb cb) |
Removes callback function for disconnection event. | |
Typedefs | |
typedef void * | cion_client_h |
The Cion client handle. | |
typedef void(* | cion_client_server_discovered_cb )(const char *service_name, const cion_peer_info_h peer_info, void *user_data) |
Called when the server is discovered. | |
typedef void(* | cion_client_connection_result_cb )(const char *service_name, const cion_peer_info_h peer_info, const cion_connection_result_h result, void *user_data) |
Called when the connection is accepted or rejected. | |
typedef void(* | cion_client_payload_async_result_cb )(const cion_payload_async_result_h result, void *user_data) |
Called after sending payload asynchronously. | |
typedef void(* | cion_client_payload_received_cb )(const char *service_name, const cion_peer_info_h peer_info, const cion_payload_h payload, cion_payload_transfer_status_e status, void *user_data) |
Called when the payload is received. | |
typedef void(* | cion_client_disconnected_cb )(const char *service_name, const cion_peer_info_h peer_info, void *user_data) |
Called when the connection is disconnected. |
Typedef Documentation
typedef void(* cion_client_connection_result_cb)(const char *service_name, const cion_peer_info_h peer_info, const cion_connection_result_h result, void *user_data) |
Called when the connection is accepted or rejected.
- Since :
- 6.5
- Parameters:
-
[in] service_name The name of service
The service_name can be used only in the callback. To use outside, make a copy.[in] peer_info The Cion peer information handle
The peer_info can be used only in the callback. To use outside, make a copy.[in] result The handle for connection result
The result can be used only in the callback. To use outside, make a copy.[in] user_data The user data
typedef void(* cion_client_disconnected_cb)(const char *service_name, const cion_peer_info_h peer_info, void *user_data) |
Called when the connection is disconnected.
- Since :
- 6.5
- Parameters:
-
[in] service_name The name of service
The service_name can be used only in the callback. To use outside, make a copy.[in] peer_info The cion peer information handle
The peer_info can be used only in the callback. To use outside, make a copy.[in] user_data The user data
typedef void* cion_client_h |
The Cion client handle.
- Since :
- 6.5
typedef void(* cion_client_payload_async_result_cb)(const cion_payload_async_result_h result, void *user_data) |
Called after sending payload asynchronously.
- Since :
- 6.5
- Parameters:
-
[in] result The result of sending payload
The result can be used only in the callback. To use outside, make a copy.[in] user_data The user data
typedef void(* cion_client_payload_received_cb)(const char *service_name, const cion_peer_info_h peer_info, const cion_payload_h payload, cion_payload_transfer_status_e status, void *user_data) |
Called when the payload is received.
- Since :
- 6.5
- Parameters:
-
[in] service_name The name of service
The service_name is the name of connected service that sent the payload. The service_name can be used only in the callback. To use outside, make a copy.[in] peer_info The Cion peer information handle
The peer_info can be used only in the callback. To use outside, make a copy.[in] payload The received payload
The payload can be used only in the callback.
The payload should not be released.[in] status The status of transfer [in] user_data The user data
typedef void(* cion_client_server_discovered_cb)(const char *service_name, const cion_peer_info_h peer_info, void *user_data) |
Called when the server is discovered.
- Since :
- 6.5
- Parameters:
-
[in] service_name The name of service
The service_name can be used only in the callback. To use outside, make a copy.[in] peer_info The Cion peer information handle
The peer_info can be used only in the callback. To use outside, make a copy.[in] user_data The user data
Function Documentation
int cion_client_add_connection_result_cb | ( | cion_client_h | client, |
cion_client_connection_result_cb | cb, | ||
void * | user_data | ||
) |
Adds callback function for connection result.
- Since :
- 6.5
- Parameters:
-
[in] client The Cion client handle [in] cb The callback function [in] user_data The user data
- Returns:
0
on success, otherwise a negative error value
- Return values:
-
CION_ERROR_NONE Successful CION_ERROR_INVALID_PARAMETER Invalid parameter
- Sample code:
#include <cion.h> { int ret; ret = cion_client_add_connection_result_cb(client, _cion_client_connection_result_cb, NULL); }
int cion_client_add_disconnected_cb | ( | cion_client_h | client, |
cion_client_disconnected_cb | cb, | ||
void * | user_data | ||
) |
Adds callback function for disconnection event.
- Since :
- 6.5
- Parameters:
-
[in] client The Cion client handle [in] cb The callback function [in] user_data The user data
- Returns:
0
on success, otherwise a negative error value
- Return values:
-
CION_ERROR_NONE Successful CION_ERROR_INVALID_PARAMETER Invalid parameter
- Sample code:
#include <cion.h> { int ret; ret = cion_client_add_disconnected_cb(client, _cion_client_disconnected_cb, NULL); }
int cion_client_add_payload_received_cb | ( | cion_client_h | client, |
cion_client_payload_received_cb | cb, | ||
void * | user_data | ||
) |
Adds callback function to receive payload.
- Since :
- 6.5
- Parameters:
-
[in] client The Cion client handle [in] cb The callback function [in] user_data The user data
- Returns:
0
on success, otherwise a negative error value
- Return values:
-
CION_ERROR_NONE Successful CION_ERROR_INVALID_PARAMETER Invalid parameter
- Sample code:
#include <cion.h> { int ret; ret = cion_client_add_payload_received_cb(client, _cion_client_payload_received_cb, NULL); }
int cion_client_connect | ( | cion_client_h | client, |
const cion_peer_info_h | peer_info | ||
) |
Tries to connect to the Cion server.
- Since :
- 6.5
- Privilege Level:
- public
- Privilege:
- http://tizen.org/privilege/d2d.datasharing
http://tizen.org/privilege/internet
- Parameters:
-
[in] client The Cion client handle [in] peer_info The Cion peer information handle
- Returns:
0
on success, otherwise a negative error value
- Return values:
-
CION_ERROR_NONE Successful CION_ERROR_PERMISSION_DENIED Permission denied CION_ERROR_INVALID_PARAMETER Invalid parameter CION_ERROR_INVALID_OPERATION Invalid operation CION_ERROR_IO_ERROR IO error
- Sample code:
#include <cion.h> { int ret; ret = cion_client_connect(client, peer_info); }
int cion_client_create | ( | cion_client_h * | client, |
const char * | service_name, | ||
cion_security_h | security | ||
) |
Creates a Cion client handle.
The Cion client requests connection to server.
- Since :
- 6.5
- Remarks:
- client must be released using cion_client_destroy().
- Max length of service_name including the null terminator is 512.
- Parameters:
-
[out] client The Cion client handle [in] service_name The name of service [in] security The Cion security handle
- Returns:
0
on success, otherwise a negative error value
- Return values:
-
CION_ERROR_NONE Successful CION_ERROR_NOT_SUPPORTED Not supported CION_ERROR_INVALID_PARAMETER Invalid parameter CION_ERROR_OUT_OF_MEMORY Out of memory CION_ERROR_INVALID_OPERATION Invalid operation CION_ERROR_OPERATION_FAILED Operation failed
- Sample code:
#include <cion.h> { int ret; cion_client_h client = NULL; ret = cion_client_create(&client, "myclient", NULL); }
int cion_client_destroy | ( | cion_client_h | client | ) |
Destroys the Cion client handle.
- Since :
- 6.5
- Parameters:
-
[in] client The Cion client handle
- Returns:
0
on success, otherwise a negative error value
- Return values:
-
CION_ERROR_NONE Successful CION_ERROR_INVALID_PARAMETER Invalid parameter
- See also:
- cion_security_create()
- Sample code:
#include <cion.h> { int ret; ret = cion_client_destroy(client); }
int cion_client_disconnect | ( | cion_client_h | client | ) |
Disconnects from a server.
- Since :
- 6.5
- Parameters:
-
[in] client The Cion client handle
- Returns:
0
on success, otherwise a negative error value
- Return values:
-
CION_ERROR_NONE Successful CION_ERROR_INVALID_PARAMETER Invalid parameter
- Sample code:
#include <cion.h> { int ret; ret = cion_client_disconnect(client); }
int cion_client_remove_connection_result_cb | ( | cion_client_h | client, |
cion_client_connection_result_cb | cb | ||
) |
Removes callback function for connection result.
- Since :
- 6.5
- Parameters:
-
[in] client The Cion client handle [in] cb The callback function
- Returns:
0
on success, otherwise a negative error value
- Return values:
-
CION_ERROR_NONE Successful CION_ERROR_INVALID_PARAMETER Invalid parameter
- Sample code:
#include <cion.h> { int ret; ret = cion_client_remove_connection_result_cb(client, _cion_client_connection_result_cb); }
int cion_client_remove_disconnected_cb | ( | cion_client_h | client, |
cion_client_disconnected_cb | cb | ||
) |
Removes callback function for disconnection event.
- Since :
- 6.5
- Parameters:
-
[in] client The Cion client handle [in] cb The callback function
- Returns:
0
on success, otherwise a negative error value
- Return values:
-
CION_ERROR_NONE Successful CION_ERROR_INVALID_PARAMETER Invalid parameter
- Sample code:
#include <cion.h> { int ret; ret = cion_client_remove_disconnected_cb(client, _cion_client_disconnected_cb); }
int cion_client_remove_payload_received_cb | ( | cion_client_h | client, |
cion_client_payload_received_cb | cb | ||
) |
Removes callback function to receive payload.
- Since :
- 6.5
- Parameters:
-
[in] client The Cion client handle [in] cb The callback function
- Returns:
0
on success, otherwise a negative error value
- Return values:
-
CION_ERROR_NONE Successful CION_ERROR_INVALID_PARAMETER Invalid parameter
- Sample code:
#include <cion.h> { int ret; ret = cion_client_remove_payload_received_cb(client, _cion_client_payload_received_cb); }
int cion_client_send_data | ( | cion_client_h | client, |
unsigned char * | data, | ||
unsigned int | data_size, | ||
int | timeout, | ||
unsigned char ** | return_data, | ||
unsigned int * | return_data_size | ||
) |
Sends the data.
- Since :
- 6.5
- Remarks:
- return_data must be released using free().
- Parameters:
-
[in] client The Cion client handle [in] data The data to send [in] data_size The size of data [in] timeout The time(milliseconds) to check time out [out] return_data The returned data [out] return_data_size The size of returned data
- Returns:
0
on success, otherwise a negative error value
- Return values:
-
CION_ERROR_NONE Successful CION_ERROR_INVALID_PARAMETER Invalid parameter CION_ERROR_IO_ERROR IO error CION_ERROR_TIMED_OUT Timed out CION_ERROR_INVALID_OPERATION Invalid operation CION_ERROR_OUT_OF_MEMORY Out of memory
- Sample code:
#include <cion.h> { int ret; unsigned char *return_data = NULL, unsigned int return_size; ret = cion_client_send_data(client, "senddata", 8, 10, &return_data, &return_size); }
int cion_client_send_payload_async | ( | cion_client_h | client, |
cion_payload_h | payload, | ||
cion_client_payload_async_result_cb | cb, | ||
void * | user_data | ||
) |
Sends the payload asynchronously.
- Since :
- 6.5
- Parameters:
-
[in] client The Cion client handle [in] payload The payload handle [in] cb The callback function [in] user_data The user data
- Returns:
0
on success, otherwise a negative error value
- Return values:
-
CION_ERROR_NONE Successful CION_ERROR_INVALID_PARAMETER Invalid parameter CION_ERROR_INVALID_OPERATION Invalid Operation
- Sample code:
#include <cion.h> { int ret; ret = cion_client_send_payload_async(client, payload, _cion_client_payload_async_result_cb, NULL); }
int cion_client_stop_discovery | ( | cion_client_h | client | ) |
Stops to discovery Cion server.
- Since :
- 6.5
- Parameters:
-
[in] client The Cion client handle
- Returns:
0
on success, otherwise a negative error value
- Return values:
-
CION_ERROR_NONE Successful CION_ERROR_INVALID_PARAMETER Invalid parameter CION_ERROR_INVALID_OPERATION Invalid
- Sample code:
#include <cion.h> { int ret; ret = cion_client_stop_discovery(client); }
int cion_client_try_discovery | ( | cion_client_h | client, |
cion_client_server_discovered_cb | cb, | ||
void * | user_data | ||
) |
Tries to discover a Cion server.
- Since :
- 6.5
- Privilege Level:
- public
- Privilege:
- http://tizen.org/privilege/d2d.datasharing
http://tizen.org/privilege/internet
- Remarks:
- Tries to discover the server with service name that the client handle has.
- Parameters:
-
[in] client The Cion client handle [in] cb The callback function [in] user_data The user data
- Returns:
0
on success, otherwise a negative error value
- Return values:
-
CION_ERROR_NONE Successful CION_ERROR_PERMISSION_DENIED Permission denied CION_ERROR_INVALID_PARAMETER Invalid parameter CION_ERROR_ALREADY_IN_PROGRESS Already in progress CION_ERROR_IO_ERROR IO error
- See also:
- cion_client_server_discovered_cb()
- Sample code:
#include <cion.h> { int ret; ret = cion_client_try_discovery(client, _cion_client_server_discovered_cb, NULL); }