Linux Audio

Check our new training course

Linux kernel drivers training

May 6-19, 2025
Register
Loading...
v6.13.7
 1/* SPDX-License-Identifier: GPL-2.0 */
 2
 3#ifndef __NET_BAREUDP_H
 4#define __NET_BAREUDP_H
 5
 6#include <linux/netdevice.h>
 7#include <linux/types.h>
 
 8#include <net/rtnetlink.h>
 
 
 
 
 
 
 
 
 
 
 
 9
10static inline bool netif_is_bareudp(const struct net_device *dev)
11{
12	return dev->rtnl_link_ops &&
13	       !strcmp(dev->rtnl_link_ops->kind, "bareudp");
14}
15
16#endif
v5.9
 1/* SPDX-License-Identifier: GPL-2.0 */
 2
 3#ifndef __NET_BAREUDP_H
 4#define __NET_BAREUDP_H
 5
 
 6#include <linux/types.h>
 7#include <linux/skbuff.h>
 8#include <net/rtnetlink.h>
 9
10struct bareudp_conf {
11	__be16 ethertype;
12	__be16 port;
13	u16 sport_min;
14	bool multi_proto_mode;
15};
16
17struct net_device *bareudp_dev_create(struct net *net, const char *name,
18				      u8 name_assign_type,
19				      struct bareudp_conf *info);
20
21static inline bool netif_is_bareudp(const struct net_device *dev)
22{
23	return dev->rtnl_link_ops &&
24	       !strcmp(dev->rtnl_link_ops->kind, "bareudp");
25}
26
27#endif