Functions to communicate with and/or set options on a client. More...
Functions | |
EAPI int | ecore_con_client_send (Ecore_Con_Client *cl, const void *data, int size) |
Send the given data to the given client. More... | |
static EOLIAN int | _efl_network_client_efl_network_send (Eo *obj, Efl_Network_Client_Data *cl, const void *data, int size) |
static EOLIAN Ecore_Con_Server * | _efl_network_client_server_get (Eo *obj, Efl_Network_Client_Data *cl) |
static EOLIAN Eina_Bool | _efl_network_client_efl_network_connected_get (Eo *obj, Efl_Network_Client_Data *cl) |
EAPI Eina_Bool | ecore_con_client_connected_get (const Ecore_Con_Client *cl) |
Return whether the client is still connected. More... | |
static EOLIAN void | _efl_network_client_efl_network_timeout_set (Eo *obj, Efl_Network_Client_Data *cl, double timeout) |
EAPI void | ecore_con_client_timeout_set (Ecore_Con_Client *cl, double timeout) |
Set the time after which the client will be disconnected when inactive. More... | |
static EOLIAN double | _efl_network_client_efl_network_timeout_get (Eo *obj, Efl_Network_Client_Data *cl) |
EAPI double | ecore_con_client_timeout_get (const Ecore_Con_Client *cl) |
Get the default time after which the client will be disconnected when inactive. More... | |
EAPI void * | ecore_con_client_del (Ecore_Con_Client *cl) |
Close the connection and free memory allocated to the given client. More... | |
EAPI void | ecore_con_client_data_set (Ecore_Con_Client *cl, const void *data) |
Set the data associated with the given client to data . More... | |
EAPI void * | ecore_con_client_data_get (Ecore_Con_Client *cl) |
Retrieve the data associated with the given client. More... | |
static EOLIAN const char * | _efl_network_client_efl_network_ip_get (Eo *obj, Efl_Network_Client_Data *cl) |
EAPI const char * | ecore_con_client_ip_get (const Ecore_Con_Client *cl) |
Get the IP address of a client that has connected. More... | |
static EOLIAN int | _efl_network_client_efl_network_port_get (Eo *obj, Efl_Network_Client_Data *cl) |
EAPI int | ecore_con_client_port_get (const Ecore_Con_Client *cl) |
Return the port that the client has connected to. More... | |
static EOLIAN double | _efl_network_client_efl_network_uptime_get (Eo *obj, Efl_Network_Client_Data *cl) |
EAPI double | ecore_con_client_uptime_get (const Ecore_Con_Client *cl) |
Check how long a client has been connected. More... | |
static EOLIAN void | _efl_network_client_efl_network_flush (Eo *obj, Efl_Network_Client_Data *cl) |
EAPI void | ecore_con_client_flush (Ecore_Con_Client *cl) |
Flush all pending data to the given client. More... | |
EAPI int | ecore_con_server_fd_get (const Ecore_Con *obj) |
Get the fd that the server is connected to. More... | |
static EOLIAN int | _efl_network_server_efl_network_fd_get (Eo *obj, Efl_Network_Server_Data *svr) |
static EOLIAN int | _efl_network_client_efl_network_fd_get (Eo *obj, Efl_Network_Client_Data *cl) |
EAPI int | ecore_con_client_fd_get (const Ecore_Con *obj) |
Get the fd that the client is connected to. More... | |
EAPI int | ecore_ipc_ssl_available_get (void) |
Returns if SSL support is available. More... | |
Functions to communicate with and/or set options on a client.
Functions that operate on Ecore connection client objects.
This set of functions, as explained in Ecore Connection Server Functions, is used to send data to a client, or to set options and get information about this client. Most of them should be used on the server, applied on the client object.
If you need to implement a client, the way to connect to a server is described in Ecore Connection Server Functions.
An example of usage of these functions can be found at:
EAPI int ecore_con_client_send | ( | Ecore_Con_Client * | cl, |
const void * | data, | ||
int | size | ||
) |
Send the given data to the given client.
cl | The given client. |
data | The given data. |
size | Length of the data, in bytes, to send. |
0
will be returned if there is an error.This function will send the given data to the client as soon as the program is back to the main loop. Thus, this function returns immediately (non-blocking). If the data needs to be sent now, call ecore_con_client_flush() after this one.
Return whether the client is still connected.
cl | The given client. |
EINA_TRUE
if connected, EINA_FALSE
otherwise. EAPI void ecore_con_client_timeout_set | ( | Ecore_Con_Client * | cl, |
double | timeout | ||
) |
Set the time after which the client will be disconnected when inactive.
cl | The client object |
timeout | The timeout, in seconds, to disconnect after |
This function is used by the server to set the idle timeout on a specific client. If the client becomes idle for a time higher than this value, it will be disconnected. A value of < 1 disables the idle timeout.
This timeout is not affected by the one set by ecore_con_server_timeout_set(). A client will be disconnected whenever the client or the server timeout is reached. That means, the lower timeout value will be used for that client if ecore_con_server_timeout_set() is used on the server.
EAPI double ecore_con_client_timeout_get | ( | const Ecore_Con_Client * | cl | ) |
Get the default time after which the client will be disconnected when inactive.
cl | The client object |
This function is used to get the idle timeout for a client. A value of < 1 means the idle timeout is disabled.
EAPI void * ecore_con_client_del | ( | Ecore_Con_Client * | cl | ) |
Close the connection and free memory allocated to the given client.
cl | The given client. |
References eo_data_scope_get().
Referenced by ecore_ipc_client_del().
EAPI void ecore_con_client_data_set | ( | Ecore_Con_Client * | cl, |
const void * | data | ||
) |
Set the data associated with the given client to data
.
cl | The given client. |
data | What to set the data to. |
References eo_data_scope_get().
Referenced by ecore_ipc_ssl_available_get().
EAPI void * ecore_con_client_data_get | ( | Ecore_Con_Client * | cl | ) |
Retrieve the data associated with the given client.
cl | The given client. |
cl
. References eo_data_scope_get().
Referenced by ecore_ipc_ssl_available_get().
EAPI const char * ecore_con_client_ip_get | ( | const Ecore_Con_Client * | cl | ) |
Get the IP address of a client that has connected.
cl | The given client. |
The returned string should not be modified, freed or trusted to stay valid after deletion for the cl
object. If no IP is known NULL
is returned.
Referenced by ecore_ipc_client_ip_get().
EAPI int ecore_con_client_port_get | ( | const Ecore_Con_Client * | cl | ) |
Return the port that the client has connected to.
cl | The client |
cl
has connected to, or -1 on error Use this function to return the port on which a given client has connected. EAPI double ecore_con_client_uptime_get | ( | const Ecore_Con_Client * | cl | ) |
Check how long a client has been connected.
cl | The client to check |
This function is used to find out how long a client has been connected for.
EAPI void ecore_con_client_flush | ( | Ecore_Con_Client * | cl | ) |
Flush all pending data to the given client.
cl | The given client. |
This function will block until all data is sent to the server.
Referenced by ecore_ipc_client_flush().
EAPI int ecore_con_server_fd_get | ( | const Ecore_Con_Server * | svr | ) |
Get the fd that the server is connected to.
svr | The server object |
This function returns the fd which is used by the underlying server connection. It should not be tampered with unless you REALLY know what you are doing.
EAPI int ecore_con_client_fd_get | ( | const Ecore_Con_Client * | cl | ) |
Get the fd that the client is connected to.
cl | The client object |
This function returns the fd which is used by the underlying client connection. It should not be tampered with unless you REALLY know what you are doing.
References ECORE_CON_EVENT_PROXY_BIND, and eo_data_scope_get().
EAPI int ecore_ipc_ssl_available_get | ( | void | ) |
Returns if SSL support is available.
References _Ecore_Ipc_Event_Client_Add::client, _Ecore_Ipc_Event_Client_Del::client, _Ecore_Ipc_Event_Client_Data::client, _Ecore_Con_Event_Client_Add::client, _Ecore_Con_Event_Client_Del::client, _Ecore_Con_Event_Client_Data::client, _Ecore_Ipc_Event_Client_Data::data, _Ecore_Ipc_Event_Server_Data::data, _Ecore_Con_Event_Client_Data::data, _Ecore_Con_Event_Server_Data::data, ECORE_CALLBACK_CANCEL, ECORE_CALLBACK_RENEW, ecore_con_client_data_get(), ecore_con_client_data_set(), ecore_con_server_data_get(), ecore_con_ssl_available_get(), ecore_event_add(), ecore_ipc_client_del(), ecore_ipc_server_del(), EINA_FALSE, eina_list_append(), eina_list_data_find(), EINA_TRUE, EINA_UNUSED, _Ecore_Ipc_Event_Client_Data::major, _Ecore_Ipc_Event_Server_Data::major, _Ecore_Ipc_Event_Client_Data::minor, _Ecore_Ipc_Event_Server_Data::minor, _Ecore_Ipc_Event_Client_Data::ref, _Ecore_Ipc_Event_Server_Data::ref, _Ecore_Ipc_Event_Client_Data::ref_to, _Ecore_Ipc_Event_Server_Data::ref_to, _Ecore_Ipc_Event_Client_Data::response, _Ecore_Ipc_Event_Server_Data::response, _Ecore_Ipc_Event_Server_Add::server, _Ecore_Ipc_Event_Server_Del::server, _Ecore_Ipc_Event_Server_Data::server, _Ecore_Con_Event_Server_Add::server, _Ecore_Con_Event_Server_Del::server, _Ecore_Con_Event_Server_Data::server, _Ecore_Ipc_Event_Client_Data::size, _Ecore_Ipc_Event_Server_Data::size, _Ecore_Con_Event_Client_Data::size, and _Ecore_Con_Event_Server_Data::size.