Changeset 71b00dcc in mainline for uspace/srv/net/il/ip/ip_module.c
- Timestamp:
- 2010-03-07T22:51:38Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 60ab6c3
- Parents:
- b5cbff4 (diff), 31c80a5 (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/il/ip/ip_module.c
rb5cbff4 r71b00dcc 61 61 * @see NAME 62 62 */ 63 void module_print_name( void);63 void module_print_name(void); 64 64 65 65 /** Starts the IP module. … … 70 70 * @returns Other error codes as defined for the REGISTER_ME() macro function. 71 71 */ 72 int module_start( async_client_conn_t client_connection);72 int module_start(async_client_conn_t client_connection); 73 73 74 74 /** Processes the IP message. … … 80 80 * @returns Other error codes as defined for the ip_message() function. 81 81 */ 82 int module_message( ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count);82 int module_message(ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count); 83 83 84 84 /** IP module global data. … … 86 86 extern ip_globals_t ip_globals; 87 87 88 void module_print_name( void){89 printf( "%s", NAME);88 void module_print_name(void){ 89 printf("%s", NAME); 90 90 } 91 91 92 int module_start( async_client_conn_t client_connection){92 int module_start(async_client_conn_t client_connection){ 93 93 ERROR_DECLARE; 94 94 95 ipcarg_t 95 ipcarg_t phonehash; 96 96 97 async_set_client_connection( client_connection);98 ip_globals.net_phone = net_connect_module( SERVICE_NETWORKING);99 ERROR_PROPAGATE( 100 if( ERROR_OCCURRED( ip_initialize( client_connection))101 || ERROR_OCCURRED( REGISTER_ME( SERVICE_IP, & phonehash))){97 async_set_client_connection(client_connection); 98 ip_globals.net_phone = net_connect_module(SERVICE_NETWORKING); 99 ERROR_PROPAGATE(pm_init()); 100 if(ERROR_OCCURRED(ip_initialize(client_connection)) 101 || ERROR_OCCURRED(REGISTER_ME(SERVICE_IP, &phonehash))){ 102 102 pm_destroy(); 103 103 return ERROR_CODE; … … 110 110 } 111 111 112 int module_message( ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count){113 return ip_message( callid, call, answer, answer_count);112 int module_message(ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count){ 113 return ip_message(callid, call, answer, answer_count); 114 114 } 115 115
Note:
See TracChangeset
for help on using the changeset viewer.