^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 1) /* SPDX-License-Identifier: GPL-2.0 */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 2) #ifndef _NET_P8022_H
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 3) #define _NET_P8022_H
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 4) struct datalink_proto *
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 5) register_8022_client(unsigned char type,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 6) int (*func)(struct sk_buff *skb,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 7) struct net_device *dev,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 8) struct packet_type *pt,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 9) struct net_device *orig_dev));
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 10) void unregister_8022_client(struct datalink_proto *proto);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 11)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 12) struct datalink_proto *make_8023_client(void);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 13) void destroy_8023_client(struct datalink_proto *dl);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 14) #endif