1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 04:52:59 +01:00

pkg/lwip: Add empty netif_setopt

To fully implement net/netif.h
This commit is contained in:
Erik Ekman 2021-10-11 23:01:46 +02:00
parent 4679d3d06e
commit 7b84b3a3f5

View File

@ -71,4 +71,16 @@ int netif_get_opt(netif_t *iface, netopt_t opt, uint16_t context,
return res;
}
int netif_set_opt(netif_t *iface, netopt_t opt, uint16_t context,
void *value, size_t value_len)
{
(void)iface;
(void)opt;
(void)context;
(void)value;
(void)value_len;
return -ENOTSUP;
}
/** @} */