Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/net/il/il_skel.c

    r9934f7d rffa2c8ef  
    4242#include <net/modules.h>
    4343
    44 // FIXME: remove this header
    45 #include <kernel/ipc/ipc_methods.h>
    46 
    4744/** Default thread for new connections.
    4845 *
     
    5148 *
    5249 */
    53 static void il_client_connection(ipc_callid_t iid, ipc_call_t *icall,
    54     void *arg)
     50static void il_client_connection(ipc_callid_t iid, ipc_call_t *icall)
    5551{
    5652        /*
     
    7975                 * result.
    8076                 */
    81                 if ((!IPC_GET_IMETHOD(call)) || (res == EHANGUP))
     77                if ((IPC_GET_IMETHOD(call) == IPC_M_PHONE_HUNGUP) ||
     78                    (res == EHANGUP))
    8279                        return;
    8380               
     
    118115                goto out;
    119116       
    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);
    121118        if (rc != EOK)
    122119                goto out;
Note: See TracChangeset for help on using the changeset viewer.