1 /* SPDX-License-Identifier: GPL-2.0 */
3 #ifndef __NET_BAREUDP_H
4 #define __NET_BAREUDP_H
6 #include <linux/types.h>
7 #include <linux/skbuff.h>
8 #include <net/rtnetlink.h>
14 bool multi_proto_mode
;
17 struct net_device
*bareudp_dev_create(struct net
*net
, const char *name
,
19 struct bareudp_conf
*info
);
21 static inline bool netif_is_bareudp(const struct net_device
*dev
)
23 return dev
->rtnl_link_ops
&&
24 !strcmp(dev
->rtnl_link_ops
->kind
, "bareudp");