Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/net/net.c

    rffa2c8ef r73ac2e9  
    4747#include <str_error.h>
    4848
     49#include <ipc/ipc.h>
    4950#include <ipc/services.h>
    5051#include <ipc/net.h>
     
    325326static int net_module_start(async_client_conn_t client_connection)
    326327{
     328        sysarg_t phonehash;
    327329        int rc;
    328330       
     
    336338                goto out;
    337339       
    338         rc = async_connect_to_me(PHONE_NS, SERVICE_NETWORKING, 0, 0, NULL);
     340        rc = ipc_connect_to_me(PHONE_NS, SERVICE_NETWORKING, 0, 0, &phonehash);
    339341        if (rc != EOK)
    340342                goto out;
     
    685687         *  - Answer the first IPC_M_CONNECT_ME_TO call.
    686688         */
    687         async_answer_0(iid, EOK);
     689        ipc_answer_0(iid, EOK);
    688690       
    689691        while (true) {
Note: See TracChangeset for help on using the changeset viewer.