Rev 4307 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 4307 | Rev 4350 | ||
---|---|---|---|
Line 29... | Line 29... | ||
29 | /** @addtogroup net_nil |
29 | /** @addtogroup net_nil |
30 | * @{ |
30 | * @{ |
31 | */ |
31 | */ |
32 | 32 | ||
33 | /** @file |
33 | /** @file |
- | 34 | * Network interface layer modules common skeleton. |
|
- | 35 | * All network interface layer modules have to implement this interface. |
|
34 | */ |
36 | */ |
35 | 37 | ||
36 | #ifndef __NET_ETH_MODULE_H__ |
38 | #ifndef __NET_ETH_MODULE_H__ |
37 | #define __NET_ETH_MODULE_H__ |
39 | #define __NET_ETH_MODULE_H__ |
38 | 40 | ||
39 | #include <ipc/ipc.h> |
41 | #include <ipc/ipc.h> |
40 | 42 | ||
- | 43 | /** Module initialization. |
|
- | 44 | * Is called by the module_start() function. |
|
- | 45 | * @param net_phone The networking moduel phone. Input parameter. |
|
- | 46 | * @returns EOK on success. |
|
- | 47 | * @returns Other error codes as defined for each specific module initialize function. |
|
- | 48 | */ |
|
41 | int nil_initialize( int networking_phone ); |
49 | int nil_initialize( int net_phone ); |
- | 50 | ||
- | 51 | /** Message processing function. |
|
- | 52 | * @param callid The message identifier. Input parameter. |
|
- | 53 | * @param call The message parameters. Input parameter. |
|
- | 54 | * @param answer The message answer parameters. Output parameter. |
|
- | 55 | * @param answer_count The last parameter for the actual answer in the answer parameter. Output parameter. |
|
- | 56 | * @returns EOK on success. |
|
- | 57 | * @returns ENOTSUP if the message is not known. |
|
- | 58 | * @returns Other error codes as defined for each specific module message function. |
|
- | 59 | * @see nil_interface.h |
|
- | 60 | * @see IS_NET_NIL_MESSAGE() |
|
- | 61 | */ |
|
42 | int nil_message( ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count ); |
62 | int nil_message( ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count ); |
43 | 63 | ||
44 | #endif |
64 | #endif |
45 | 65 | ||
46 | /** @} |
66 | /** @} |