Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/netecho/comm.c

    rb9be9b0 r5a6cc679  
    4444#include <stdlib.h>
    4545#include <stdint.h>
    46 #include <str.h>
    4746#include <str_error.h>
    4847
     
    5251static udp_t *udp;
    5352static udp_assoc_t *assoc;
     53static inet_ep_t remote;
    5454
    5555#define RECV_BUF_SIZE 1024
     
    184184errno_t comm_send(void *data, size_t size)
    185185{
    186         errno_t rc = udp_assoc_send_msg(assoc, NULL, data, size);
     186        errno_t rc = udp_assoc_send_msg(assoc, &remote, data, size);
    187187        if (rc != EOK)
    188188                return EIO;
Note: See TracChangeset for help on using the changeset viewer.