summaryrefslogtreecommitdiff
path: root/lib/tests/udp.h
blob: 004b7ca9403d950962aa6822d1d1338986f57d84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <stdint.h>
#include <unistd.h>
#include <sys/time.h>

typedef ssize_t (*data_cb) (const uint8_t *buf, ssize_t len);

struct polldata {
  int s;
  data_cb cb;
  struct timeval *timeout;
};

struct polldata *udp_server (const char *bindto, struct timeval *timeout, data_cb cb);
ssize_t udp_poll (struct polldata *data);
void udp_free_polldata (struct polldata *data);

ssize_t hd (const uint8_t *buf, ssize_t len);