Tizen Native API
4.0
|
Utility functions that set up and shut down the Ecore Connection library.
There's also ecore_con_lookup() that can be used to make simple asynchronous DNS lookups.
A simple example of how to use these functions:
Functions | |
int | ecore_con_init (void) |
Initializes the Ecore_Con library. | |
int | ecore_con_shutdown (void) |
Shuts down the Ecore_Con library. | |
Typedefs | |
typedef void(* | Ecore_Con_Dns_Cb )(const char *canonname, const char *ip, struct sockaddr *addr, int addrlen, void *data) |
Typedef Documentation
A callback type for use with ecore_con_lookup.
Enumeration Type Documentation
enum _Ecore_Con_Type |
Types for an ecore_con client/server object. A correct way to set this type is with an ECORE_CON_$TYPE, optionally OR'ed with an ECORE_CON_$USE if encryption is desired, and LOAD_CERT if the previously loaded certificate should be used.
- Enumerator:
Function Documentation
int ecore_con_init | ( | void | ) |
Initializes the Ecore_Con library.
- Returns:
- Number of times the library has been initialised without being shut down.
- Note:
- This function already calls ecore_init() internally, so you don't need to call it explicitly.
- Since :
- 3.0
int ecore_con_shutdown | ( | void | ) |
Shuts down the Ecore_Con library.
- Returns:
- Number of times the library has been initialised without being shut down.
- Note:
- This function already calls ecore_shutdown() internally, so you don't need to call it explicitly unless you called ecore_init() explicitly too.
- Since :
- 3.0