blob: 7d96b3045527ca901fbd4f6910ff780046f64e19 [file] [log] [blame]
/*
* Copyright (c) 2016 Intel Corporation
*
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef _UDP_H_
#define _UDP_H_
#include <net/net_core.h>
struct udp_context {
struct net_context *net_ctx;
struct net_buf *rx_nbuf;
struct k_sem rx_sem;
int remaining;
};
int udp_init(struct udp_context *ctx);
int udp_tx(void *ctx, const unsigned char *buf, size_t size);
int udp_rx(void *ctx, unsigned char *buf, size_t size, uint32_t timeout);
#endif