Ignore:
File:
1 edited

Legend:

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

    rffa2c8ef rf1938c6  
    4444#include <errno.h>
    4545
     46#include <ipc/ipc.h>
    4647#include <ipc/services.h>
    4748#include <ipc/net.h>
     
    15051506
    15061507        /* Release the application phone */
    1507         async_hangup(app_phone);
     1508        ipc_hangup(app_phone);
    15081509
    15091510        printf("release\n");
     
    24532454                                    SERVICE_TCP, IPC_GET_ERROR(*icall));
    24542455                       
    2455                         async_answer_0(iid, (sysarg_t) rc);
     2456                        ipc_answer_0(iid, (sysarg_t) rc);
    24562457                        break;
    24572458                default:
    2458                         async_answer_0(iid, (sysarg_t) ENOTSUP);
     2459                        ipc_answer_0(iid, (sysarg_t) ENOTSUP);
    24592460                }
    24602461               
Note: See TracChangeset for help on using the changeset viewer.