ecore_ipc: rename parameters and annotations for doxygen

Summary:
Some parameters' name are different in annotations and statements,
so it occurs doxygen warning.
To fix it, change it appropriately.

Test Plan: API Doxygen Revision

Reviewers: raster, cedric, jpeg, myoungwoon, Jaehyun_Cho

Differential Revision: https://phab.enlightenment.org/D5316

Signed-off-by: Cedric Bail <cedric@osg.samsung.com>
This commit is contained in:
JinYong Park 2017-10-13 12:24:14 -07:00 committed by Cedric Bail
parent df5f404f09
commit b86e4ca88b
1 changed files with 6 additions and 6 deletions

View File

@ -353,10 +353,10 @@ EAPI int ecore_ipc_shutdown(void);
* @ingroup Ecore_IPC_Server_Group
* @brief Creates an IPC server that listens for connections.
*
* For more details about the @p compl_type, @p name and @p port
* For more details about the @p type, @p name and @p port
* parameters, see the @ref ecore_con_server_add documentation.
*
* @param compl_type The connection type.
* @param type The connection type.
* @param name Name to associate with the socket used for connection.
* @param port Number to identify with socket used for connection.
* @param data Data to associate with the IPC server.
@ -370,10 +370,10 @@ EAPI Ecore_Ipc_Server *ecore_ipc_server_add(Ecore_Ipc_Type type, const char *nam
* @brief Creates an IPC server object to represent the IPC server listening
* on the given port.
*
* For more details about the @p compl_type, @p name and @p port
* For more details about the @p type, @p name and @p port
* parameters, see the @ref ecore_con_server_connect documentation.
*
* @param compl_type The IPC connection type.
* @param type The IPC connection type.
* @param name Name used to determine which socket to use for the
* IPC connection.
* @param port Number used to identify the socket to use for the
@ -468,7 +468,7 @@ EAPI void ecore_ipc_server_client_limit_set(Ecore_Ipc_Server *svr,
* @param svr The given server.
* @param size The maximum data payload size in bytes.
*/
EAPI void ecore_ipc_server_data_size_max_set(Ecore_Ipc_Server *srv, int size);
EAPI void ecore_ipc_server_data_size_max_set(Ecore_Ipc_Server *svr, int size);
/**
* @ingroup Ecore_IPC_Server_Group
@ -477,7 +477,7 @@ EAPI void ecore_ipc_server_data_size_max_set(Ecore_Ipc_Server *srv,
* @param svr The given server.
* @return The maximum data payload in bytes.
*/
EAPI int ecore_ipc_server_data_size_max_get(Ecore_Ipc_Server *srv);
EAPI int ecore_ipc_server_data_size_max_get(Ecore_Ipc_Server *svr);
/**
* @ingroup Ecore_IPC_Server_Group