1 /* SPDX-License-Identifier: GPL-2.0 */
3 #ifndef __NET_BAREUDP_H
4 #define __NET_BAREUDP_H
6 #include <linux/netdevice.h>
7 #include <linux/types.h>
8 #include <net/rtnetlink.h>
10 static inline bool netif_is_bareudp(const struct net_device
*dev
)
12 return dev
->rtnl_link_ops
&&
13 !strcmp(dev
->rtnl_link_ops
->kind
, "bareudp");