Changeset 14f1db0 in mainline for uspace/srv/net/tl/udp/udp_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/tl/udp/udp_module.c
r24ab58b3 r14f1db0 47 47 #include <packet/packet.h> 48 48 #include <net_interface.h> 49 #include <tl_ standalone.h>49 #include <tl_local.h> 50 50 51 51 #include "udp.h" … … 63 63 * @returns Other error codes as defined for the REGISTER_ME() macro function. 64 64 */ 65 int tl_module_start (async_client_conn_t client_connection){65 int tl_module_start_standalone(async_client_conn_t client_connection){ 66 66 ERROR_DECLARE; 67 67 … … 94 94 * @returns Other error codes as defined for the udp_message() function. 95 95 */ 96 int tl_module_message (ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count){97 return udp_message (callid, call, answer, answer_count);96 int tl_module_message_standalone(ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count){ 97 return udp_message_standalone(callid, call, answer, answer_count); 98 98 } 99 99
Note:
See TracChangeset
for help on using the changeset viewer.