Changeset 14f1db0 in mainline for uspace/srv/net/nil/nildummy/nildummy_module.c
- Timestamp:
- 2010-04-09T12:54:57Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a1caa3c2
- Parents:
- 24ab58b3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/nil/nildummy/nildummy_module.c
r24ab58b3 r14f1db0 46 46 #include <net_interface.h> 47 47 #include <packet/packet.h> 48 #include <nil_module.h> 49 #include <nil_standalone.h> 48 #include <nil_local.h> 50 49 51 50 #include "nildummy.h" … … 67 66 * 68 67 */ 69 int nil_module_start (async_client_conn_t client_connection)68 int nil_module_start_standalone(async_client_conn_t client_connection) 70 69 { 71 70 ERROR_DECLARE; … … 103 102 * 104 103 */ 105 int nil_module_message (const char *name, ipc_callid_t callid,104 int nil_module_message_standalone(const char *name, ipc_callid_t callid, 106 105 ipc_call_t *call, ipc_call_t *answer, int *answer_count) 107 106 { 108 return nil_message (name, callid, call, answer, answer_count);107 return nil_message_standalone(name, callid, call, answer, answer_count); 109 108 } 110 109
Note:
See TracChangeset
for help on using the changeset viewer.