Changeset 849ed54 in mainline for uspace/lib/net/netif/netif_standalone.c
- Timestamp:
- 2010-03-30T18:39:04Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7553689
- Parents:
- 7d6fe4db
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/net/netif/netif_standalone.c
r7d6fe4db r849ed54 36 36 37 37 #include <async.h> 38 39 38 #include <ipc/ipc.h> 40 39 41 #include "netif.h" 40 #include <netif.h> 41 #include <netif_standalone.h> 42 42 43 43 /** Delegates the messages to the netif_message() function. … … 50 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 netif_module_message(ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count){ 53 return netif_message(callid, call, answer, answer_count); 54 } 53 55 54 56 /** Starts the network interface module. … … 58 60 * @returns Other error codes as defined for each specific module message function. 59 61 */ 60 int module_start(async_client_conn_t client_connection); 61 62 int module_message(ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count){ 63 return netif_message(callid, call, answer, answer_count); 64 } 65 66 int module_start(async_client_conn_t client_connection){ 62 int netif_module_start(async_client_conn_t client_connection){ 67 63 ERROR_DECLARE; 68 64
Note:
See TracChangeset
for help on using the changeset viewer.