Changeset 49d819b4 in mainline for uspace/srv/net/tl/udp/udp_module.c
- Timestamp:
- 2010-11-02T23:15:18Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7ae3d6f
- Parents:
- e06ef614 (diff), d0d1f4f (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/tl/udp/udp_module.c
re06ef614 r49d819b4 28 28 29 29 /** @addtogroup udp 30 * 30 * @{ 31 31 */ 32 32 33 33 /** @file 34 * UDP standalone module implementation. 35 * Contains skeleton module functions mapping. 36 * The functions are used by the module skeleton as module specific entry points. 37 * @see module.c 34 * UDP standalone module implementation. 35 * Contains skeleton module functions mapping. 36 * The functions are used by the module skeleton as module specific entry 37 * points. 38 * @see module.c 38 39 */ 40 41 #include "udp.h" 42 #include "udp_module.h" 39 43 40 44 #include <async.h> … … 46 50 #include <net/modules.h> 47 51 #include <net/packet.h> 52 48 53 #include <net_interface.h> 49 54 #include <tl_local.h> 50 55 51 #include "udp.h" 52 #include "udp_module.h" 56 /** UDP module global data. */ 57 extern udp_globals_t udp_globals; 53 58 54 /** UDP module global data. 55 */ 56 extern udp_globals_t udp_globals; 57 58 /** Starts the UDP module. 59 * Initializes the client connection serving function, initializes the module, registers the module service and starts the async manager, processing IPC messages in an infinite loop. 60 * @param[in] client_connection The client connection processing function. The module skeleton propagates its own one. 61 * @returns EOK on successful module termination. 62 * @returns Other error codes as defined for the udp_initialize() function. 63 * @returns Other error codes as defined for the REGISTER_ME() macro function. 64 */ 65 int tl_module_start_standalone(async_client_conn_t client_connection){ 59 int tl_module_start_standalone(async_client_conn_t client_connection) 60 { 66 61 ERROR_DECLARE; 67 62 … … 70 65 async_set_client_connection(client_connection); 71 66 udp_globals.net_phone = net_connect_module(); 72 if (udp_globals.net_phone < 0){67 if (udp_globals.net_phone < 0) 73 68 return udp_globals.net_phone; 74 } 69 75 70 ERROR_PROPAGATE(pm_init()); 76 if (ERROR_OCCURRED(udp_initialize(client_connection))77 || ERROR_OCCURRED(REGISTER_ME(SERVICE_UDP, &phonehash))){71 if (ERROR_OCCURRED(udp_initialize(client_connection)) || 72 ERROR_OCCURRED(REGISTER_ME(SERVICE_UDP, &phonehash))) { 78 73 pm_destroy(); 79 74 return ERROR_CODE; … … 86 81 } 87 82 88 /** Processes the UDP message. 89 * @param[in] callid The message identifier. 90 * @param[in] call The message parameters. 91 * @param[out] answer The message answer parameters. 92 * @param[out] answer_count The last parameter for the actual answer in the answer parameter. 93 * @returns EOK on success. 94 * @returns Other error codes as defined for the udp_message() function. 95 */ 96 int tl_module_message_standalone(ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count){ 83 int 84 tl_module_message_standalone(ipc_callid_t callid, ipc_call_t *call, 85 ipc_call_t *answer, int *answer_count) 86 { 97 87 return udp_message_standalone(callid, call, answer, answer_count); 98 88 }
Note:
See TracChangeset
for help on using the changeset viewer.