Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/nic/lo/lo.c

    rea788701 r6d8455d  
    4242#include <async.h>
    4343#include <nic.h>
     44#include <packet_client.h>
    4445
    4546#define NAME  "lo"
     
    6061static void lo_send_frame(nic_t *nic_data, void *data, size_t size)
    6162{
     63        packet_t *packet;
     64        int rc;
     65
     66        packet = nic_alloc_packet(nic_data, size);
     67        if (packet == NULL)
     68                return;
     69
     70        rc = packet_copy_data(packet, data, size);
     71        if (rc != EOK)
     72                return;
     73
    6274        nic_report_send_ok(nic_data, 1, size);
    63         nic_received_noneth_frame(nic_data, data, size);
     75        nic_received_noneth_packet(nic_data, packet);
    6476}
    6577
Note: See TracChangeset for help on using the changeset viewer.