mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	These declarations is not used after ipx protocol removed. Signed-off-by: YueHaibing <yuehaibing@huawei.com> Reviewed-by: Simon Horman <simon.horman@corigine.com> Link: https://lore.kernel.org/r/20230726144054.28780-1-yuehaibing@huawei.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
		
			
				
	
	
		
			26 lines
		
	
	
	
		
			590 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			590 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* SPDX-License-Identifier: GPL-2.0 */
 | 
						|
#ifndef _NET_INET_DATALINK_H_
 | 
						|
#define _NET_INET_DATALINK_H_
 | 
						|
 | 
						|
#include <linux/list.h>
 | 
						|
 | 
						|
struct llc_sap;
 | 
						|
struct net_device;
 | 
						|
struct packet_type;
 | 
						|
struct sk_buff;
 | 
						|
 | 
						|
struct datalink_proto {
 | 
						|
        unsigned char   type[8];
 | 
						|
 | 
						|
	struct llc_sap   *sap;
 | 
						|
 | 
						|
        unsigned short  header_length;
 | 
						|
 | 
						|
        int     (*rcvfunc)(struct sk_buff *, struct net_device *,
 | 
						|
                                struct packet_type *, struct net_device *);
 | 
						|
	int     (*request)(struct datalink_proto *, struct sk_buff *,
 | 
						|
			   const unsigned char *);
 | 
						|
	struct list_head node;
 | 
						|
};
 | 
						|
 | 
						|
#endif
 |