Ignore:
File:
1 edited

Legend:

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

    rffa2c8ef rf1938c6  
    4040#include <malloc.h>
    4141#include <stdio.h>
     42#include <ipc/ipc.h>
    4243#include <ipc/services.h>
    4344#include <ipc/net.h>
     
    353354                                    SERVICE_UDP, IPC_GET_ERROR(*icall));
    354355                       
    355                         async_answer_0(iid, (sysarg_t) rc);
     356                        ipc_answer_0(iid, (sysarg_t) rc);
    356357                        break;
    357358                default:
    358                         async_answer_0(iid, (sysarg_t) ENOTSUP);
     359                        ipc_answer_0(iid, (sysarg_t) ENOTSUP);
    359360                }
    360361               
     
    867868
    868869        /* Release the application phone */
    869         async_hangup(app_phone);
     870        ipc_hangup(app_phone);
    870871
    871872        /* Release all local sockets */
Note: See TracChangeset for help on using the changeset viewer.