patch-2.1.68 linux/include/net/netlink.h

Next file: linux/include/net/pkt_sched.h
Previous file: linux/include/net/ipip.h
Back to the patch index
Back to the overall index

diff -u --recursive --new-file v2.1.67/linux/include/net/netlink.h linux/include/net/netlink.h
@@ -1,65 +0,0 @@
-#ifndef __NET_NETLINK_H
-#define __NET_NETLINK_H
-
-#define NET_MAJOR 36		/* Major 18 is reserved for networking 						*/
-#define MAX_LINKS 32
-#define MAX_QBYTES 32768	/* Maximum bytes in the queue 							*/
-
-#include <linux/netlink.h>
-
-extern int netlink_attach(int unit, int (*function)(int,struct sk_buff *skb));
-extern int netlink_donothing(int, struct sk_buff *skb);
-extern void netlink_detach(int unit);
-extern int netlink_post(int unit, struct sk_buff *skb);
-extern int init_netlink(void);
-
-/*
- *	skb should fit one page. This choice is good for headerless malloc.
- */
-#define NLMSG_GOODSIZE (PAGE_SIZE - ((sizeof(struct sk_buff)+0xF)&~0xF)-32)
-
-#define NLMSG_RECOVERY_TIMEO	(HZ/2)		/* If deleivery was failed,
-						   retry after */
-
-struct nlmsg_ctl
-{
-	struct timer_list nlmsg_timer;
-	struct sk_buff	*nlmsg_skb;		/* Partially built skb	*/
-	int		nlmsg_unit;
-	int		nlmsg_delay;		/* Time to delay skb send*/
-	int		nlmsg_maxsize;		/* Maximal message size  */
-	int		nlmsg_force;		/* post immediately	 */
-	unsigned long	nlmsg_overrun_start;	/* seqno starting lossage*/
-	unsigned long	nlmsg_overrun_end;	/* the last lost message */
-	char		nlmsg_overrun;		/* overrun flag		 */
-};
-
-void* nlmsg_send(struct nlmsg_ctl*, unsigned long type, int len,
-		 unsigned long seq, unsigned long pid);
-void nlmsg_transmit(struct nlmsg_ctl*);
-
-extern __inline__ void nlmsg_ack(struct nlmsg_ctl* ctl, unsigned long seq,
-				 unsigned long pid, int err)
-{
-	int *r;
-
-	start_bh_atomic();
-	r = nlmsg_send(ctl, NLMSG_ACK, sizeof(r), seq, pid);
-	if (r)
-		*r = err;
-	end_bh_atomic();
-}
-
-
-#define NETLINK_ROUTE		0	/* Routing/device hook				*/
-#define NETLINK_SKIP		1	/* Reserved for ENskip  			*/
-#define NETLINK_USERSOCK	2	/* Reserved for user mode socket protocols 	*/
-#define NETLINK_FIREWALL	3	/* Firewalling hook				*/
-#define NETLINK_FREE		4	/* PSI devices - 4 to 7 (obsolete)		*/
-#define NETLINK_ARPD		8	/* ARP daemon for big switched networks		*/
-#define NETLINK_IPSEC		10	/* IPSEC  (JI)					*/
-#define NETLINK_ROUTE6		11	/* Af_inet6 route communication channel		*/
-#define NETLINK_IP6_FW		13	/* IPv6 firewall trap outs			*/
-#define NETLINK_DNRT		14	/* DECnet routing messages			*/
-#define NETLINK_TAPBASE		16	/* 16->31 are the ethertap devices 		*/
-#endif

FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov