Subversion Repositories HelenOS

Rev

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

Rev 4350 Rev 4756
Line 50... Line 50...
50
/** Network interface module global data.
50
/** Network interface module global data.
51
 */
51
 */
52
extern netif_globals_t netif_globals;
52
extern netif_globals_t netif_globals;
53
 
53
 
54
/** Distributes the messages between the module parts.
54
/** Distributes the messages between the module parts.
55
 *  @param callid The message identifier. Input parameter.
55
 *  @param[in] callid The message identifier.
56
 *  @param call The message parameters. Input parameter.
56
 *  @param[in] call The message parameters.
57
 *  @param answer The message answer parameters. Output parameter.
57
 *  @param[out] answer The message answer parameters.
58
 *  @param answer_count The last parameter for the actual answer in the answer parameter. Output parameter.
58
 *  @param[out] answer_count The last parameter for the actual answer in the answer parameter.
59
 *  @returns EOK on success.
59
 *  @returns EOK on success.
60
 *  @returns ENOTSUP if the message is not known.
60
 *  @returns ENOTSUP if the message is not known.
61
 *  @returns Other error codes as defined for each specific module message function.
61
 *  @returns Other error codes as defined for each specific module message function.
62
 */
62
 */
63
int module_message( ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count );
63
int module_message( ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count );
64
 
64
 
65
/** Starts the bundle network interface module.
65
/** Starts the bundle network interface module.
66
 *  Initializes the client connection serving function, initializes both module parts, registers the module service and starts the async manager, processing IPC messages in an infinite loop.
66
 *  Initializes the client connection serving function, initializes both module parts, registers the module service and starts the async manager, processing IPC messages in an infinite loop.
67
 *  @param client_connection The client connection processing function. The module skeleton propagates its own one. Input parameter.
67
 *  @param[in] client_connection The client connection processing function. The module skeleton propagates its own one.
68
 *  @returns EOK on success.
68
 *  @returns EOK on success.
69
 *  @returns Other error codes as defined for each specific module message function.
69
 *  @returns Other error codes as defined for each specific module message function.
70
 */
70
 */
71
int module_start( async_client_conn_t client_connection );
71
int module_start( async_client_conn_t client_connection );
72
 
72