Ignore:
File:
1 edited

Legend:

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

    r5a6cc679 rb9be9b0  
    4444#include <stdlib.h>
    4545#include <stdint.h>
     46#include <str.h>
    4647#include <str_error.h>
    4748
     
    5152static udp_t *udp;
    5253static udp_assoc_t *assoc;
    53 static 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, &remote, data, size);
     186        errno_t rc = udp_assoc_send_msg(assoc, NULL, data, size);
    187187        if (rc != EOK)
    188188                return EIO;
Note: See TracChangeset for help on using the changeset viewer.