Changes in uspace/lib/net/il/il_skel.c [9934f7d:ffa2c8ef] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/net/il/il_skel.c
r9934f7d rffa2c8ef 42 42 #include <net/modules.h> 43 43 44 // FIXME: remove this header45 #include <kernel/ipc/ipc_methods.h>46 47 44 /** Default thread for new connections. 48 45 * … … 51 48 * 52 49 */ 53 static void il_client_connection(ipc_callid_t iid, ipc_call_t *icall, 54 void *arg) 50 static void il_client_connection(ipc_callid_t iid, ipc_call_t *icall) 55 51 { 56 52 /* … … 79 75 * result. 80 76 */ 81 if ((!IPC_GET_IMETHOD(call)) || (res == EHANGUP)) 77 if ((IPC_GET_IMETHOD(call) == IPC_M_PHONE_HUNGUP) || 78 (res == EHANGUP)) 82 79 return; 83 80 … … 118 115 goto out; 119 116 120 rc = async_connect_to_me(PHONE_NS, service, 0, 0, NULL , NULL);117 rc = async_connect_to_me(PHONE_NS, service, 0, 0, NULL); 121 118 if (rc != EOK) 122 119 goto out;
Note:
See TracChangeset
for help on using the changeset viewer.