netevent.h 871 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
#ifndef _NET_EVENT_H
#define _NET_EVENT_H

/*
 *	Generic netevent notifiers
 *
 *	Authors:
 *      Tom Tucker              <tom@opengridcomputing.com>
 *      Steve Wise              <swise@opengridcomputing.com>
 *
 * 	Changes:
 */

14
struct dst_entry;
15
struct neighbour;
16 17 18 19

struct netevent_redirect {
	struct dst_entry *old;
	struct dst_entry *new;
20
	struct neighbour *neigh;
21
	const void *daddr;
22 23 24 25 26
};

enum netevent_notif_type {
	NETEVENT_NEIGH_UPDATE = 1, /* arg is struct neighbour ptr */
	NETEVENT_REDIRECT,	   /* arg is struct netevent_redirect ptr */
27
	NETEVENT_DELAY_PROBE_TIME_UPDATE, /* arg is struct neigh_parms ptr */
28
	NETEVENT_MULTIPATH_HASH_UPDATE, /* arg is struct net ptr */
29 30
};

31 32 33
int register_netevent_notifier(struct notifier_block *nb);
int unregister_netevent_notifier(struct notifier_block *nb);
int call_netevent_notifiers(unsigned long val, void *v);
34 35

#endif