Changeset e8199d77 in mainline for uspace/srv/net/il/ip/ip_module.c
- Timestamp:
- 2010-10-30T17:15:33Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d3cdb7f0
- Parents:
- e9caf47
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/il/ip/ip_module.c
re9caf47 re8199d77 32 32 33 33 /** @file 34 * IP 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 * IP 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 * 39 * @see module.c 38 40 */ 39 41 … … 52 54 #include "ip_module.h" 53 55 54 /** IP module global data. 55 */ 56 /** IP module global data. */ 56 57 extern ip_globals_t ip_globals; 57 58 58 int il_module_message_standalone(ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count){ 59 int 60 il_module_message_standalone(ipc_callid_t callid, ipc_call_t *call, 61 ipc_call_t *answer, int *answer_count) 62 { 59 63 return ip_message_standalone(callid, call, answer, answer_count); 60 64 } 61 65 62 int il_module_start_standalone(async_client_conn_t client_connection){ 66 int il_module_start_standalone(async_client_conn_t client_connection) 67 { 63 68 ERROR_DECLARE; 64 69 … … 68 73 69 74 ipcarg_t phonehash; 70 if (ERROR_OCCURRED(ip_initialize(client_connection)) 71 ||ERROR_OCCURRED(REGISTER_ME(SERVICE_IP, &phonehash))) {75 if (ERROR_OCCURRED(ip_initialize(client_connection)) || 76 ERROR_OCCURRED(REGISTER_ME(SERVICE_IP, &phonehash))) { 72 77 pm_destroy(); 73 78 return ERROR_CODE;
Note:
See TracChangeset
for help on using the changeset viewer.