Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/packet/generic/packet_server.c

    rffa2c8ef r774e6d1a  
    4444#include <unistd.h>
    4545#include <sys/mman.h>
     46
     47#include <ipc/ipc.h>
    4648#include <ipc/packet.h>
    4749#include <ipc/net.h>
     50
    4851#include <net/packet.h>
    4952#include <net/packet_header.h>
     
    289292
    290293        if (!async_share_in_receive(&callid, &size)) {
    291                 async_answer_0(callid, EINVAL);
     294                ipc_answer_0(callid, EINVAL);
    292295                return EINVAL;
    293296        }
    294297
    295298        if (size != packet->length) {
    296                 async_answer_0(callid, ENOMEM);
     299                ipc_answer_0(callid, ENOMEM);
    297300                return ENOMEM;
    298301        }
Note: See TracChangeset for help on using the changeset viewer.