diff --git a/pkg/lwip/contrib/_netif.c b/pkg/lwip/contrib/_netif.c index 9aacbf6b6d..2a30b36c38 100644 --- a/pkg/lwip/contrib/_netif.c +++ b/pkg/lwip/contrib/_netif.c @@ -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; +} + /** @} */