Rev 4351 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 4351 | Rev 4704 | ||
---|---|---|---|
Line 29... | Line 29... | ||
29 | /** @addtogroup ip |
29 | /** @addtogroup ip |
30 | * @{ |
30 | * @{ |
31 | */ |
31 | */ |
32 | 32 | ||
33 | /** @file |
33 | /** @file |
- | 34 | * IP module functions. |
|
- | 35 | * The functions are used as IP module entry points. |
|
34 | */ |
36 | */ |
35 | 37 | ||
36 | #ifndef __NET_IP_MODULE_H__ |
38 | #ifndef __NET_IP_MODULE_H__ |
37 | #define __NET_IP_MODULE_H__ |
39 | #define __NET_IP_MODULE_H__ |
38 | 40 | ||
39 | #include <ipc/ipc.h> |
41 | #include <ipc/ipc.h> |
40 | 42 | ||
- | 43 | /** Initializes the IP module. |
|
- | 44 | * @param client_connection The client connection processing function. The module skeleton propagates its own one. Input parameter. |
|
- | 45 | * @returns EOK on success. |
|
- | 46 | * @returns ENOMEM if there is not enough memory left. |
|
- | 47 | */ |
|
41 | int ip_initialize( async_client_conn_t client_connection ); |
48 | int ip_initialize( async_client_conn_t client_connection ); |
- | 49 | ||
- | 50 | /** Processes the IP message. |
|
- | 51 | * @param callid The message identifier. Input parameter. |
|
- | 52 | * @param call The message parameters. Input parameter. |
|
- | 53 | * @param answer The message answer parameters. Output parameter. |
|
- | 54 | * @param answer_count The last parameter for the actual answer in the answer parameter. Output parameter. |
|
- | 55 | * @returns EOK on success. |
|
- | 56 | * @returns ENOTSUP if the message is not known. |
|
- | 57 | * @see ip_interface.h |
|
- | 58 | * @see il_interface.h |
|
- | 59 | * @see IS_NET_IP_MESSAGE() |
|
- | 60 | */ |
|
42 | int ip_message( ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count ); |
61 | int ip_message( ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count ); |
43 | 62 | ||
44 | #endif |
63 | #endif |
45 | 64 | ||
46 | /** @} |
65 | /** @} |