5 * Generic netevent notifiers
17 struct netevent_redirect {
18 struct dst_entry *old;
19 struct dst_entry *new;
20 struct neighbour *neigh;
24 enum netevent_notif_type {
25 NETEVENT_NEIGH_UPDATE = 1, /* arg is struct neighbour ptr */
26 NETEVENT_REDIRECT, /* arg is struct netevent_redirect ptr */
29 int register_netevent_notifier(struct notifier_block *nb);
30 int unregister_netevent_notifier(struct notifier_block *nb);
31 int call_netevent_notifiers(unsigned long val, void *v);