Subversion Repositories HelenOS

Rev

Rev 4704 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4704 Rev 4756
Line 40... Line 40...
40
 
40
 
41
#include <async.h>
41
#include <async.h>
42
#include <ipc/ipc.h>
42
#include <ipc/ipc.h>
43
 
43
 
44
/** Initializes the TCP module.
44
/** Initializes the TCP module.
45
 *  @param client_connection The client connection processing function. The module skeleton propagates its own one. Input parameter.
45
 *  @param[in] client_connection The client connection processing function. The module skeleton propagates its own one.
46
 *  @returns EOK on success.
46
 *  @returns EOK on success.
47
 *  @returns ENOMEM if there is not enough memory left.
47
 *  @returns ENOMEM if there is not enough memory left.
48
 */
48
 */
49
int tcp_initialize( async_client_conn_t client_connection );
49
int tcp_initialize( async_client_conn_t client_connection );
50
 
50
 
51
/** Processes the TCP message.
51
/** Processes the TCP message.
52
 *  @param callid The message identifier. Input parameter.
52
 *  @param[in] callid The message identifier.
53
 *  @param call The message parameters. Input parameter.
53
 *  @param[in] call The message parameters.
54
 *  @param answer The message answer parameters. Output parameter.
54
 *  @param[out] answer The message answer parameters.
55
 *  @param answer_count The last parameter for the actual answer in the answer parameter. Output parameter.
55
 *  @param[out] answer_count The last parameter for the actual answer in the answer parameter.
56
 *  @returns EOK on success.
56
 *  @returns EOK on success.
57
 *  @returns ENOTSUP if the message is not known.
57
 *  @returns ENOTSUP if the message is not known.
58
 *  @see tcp_interface.h
58
 *  @see tcp_interface.h
59
 *  @see IS_NET_TCP_MESSAGE()
59
 *  @see IS_NET_TCP_MESSAGE()
60
 */
60
 */