Rev 4697 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 4697 | Rev 4756 | ||
---|---|---|---|
Line 39... | Line 39... | ||
39 | #include <ipc/ipc.h> |
39 | #include <ipc/ipc.h> |
40 | 40 | ||
41 | #include "netif.h" |
41 | #include "netif.h" |
42 | 42 | ||
43 | /** Delegates the messages to the netif_message() function. |
43 | /** Delegates the messages to the netif_message() function. |
44 | * @param callid The message identifier. Input parameter. |
44 | * @param[in] callid The message identifier. |
45 | * @param call The message parameters. Input parameter. |
45 | * @param[in] call The message parameters. |
46 | * @param answer The message answer parameters. Output parameter. |
46 | * @param[out] answer The message answer parameters. |
47 | * @param answer_count The last parameter for the actual answer in the answer parameter. Output parameter. |
47 | * @param[out] answer_count The last parameter for the actual answer in the answer parameter. |
48 | * @returns EOK on success. |
48 | * @returns EOK on success. |
49 | * @returns ENOTSUP if the message is not known. |
49 | * @returns ENOTSUP if the message is not known. |
50 | * @returns Other error codes as defined for each specific module message function. |
50 | * @returns Other error codes as defined for each specific module message function. |
51 | */ |
51 | */ |
52 | int module_message( ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count ); |
52 | int module_message( ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count ); |
53 | 53 | ||
54 | /** Starts the network interface module. |
54 | /** Starts the network interface module. |
55 | * Initializes the client connection serving function, initializes the module, registers the module service and starts the async manager, processing IPC messages in an infinite loop. |
55 | * Initializes the client connection serving function, initializes the module, registers the module service and starts the async manager, processing IPC messages in an infinite loop. |
56 | * @param client_connection The client connection processing function. The module skeleton propagates its own one. Input parameter. |
56 | * @param[in] client_connection The client connection processing function. The module skeleton propagates its own one. |
57 | * @returns EOK on success. |
57 | * @returns EOK on success. |
58 | * @returns Other error codes as defined for each specific module message function. |
58 | * @returns Other error codes as defined for each specific module message function. |
59 | */ |
59 | */ |
60 | int module_start( async_client_conn_t client_connection ); |
60 | int module_start( async_client_conn_t client_connection ); |
61 | 61 |