#ifndef _NET_EVENT_H #define _NET_EVENT_H /* * Generic netevent notifiers * * Authors: * Tom Tucker <tom@opengridcomputing.com> * Steve Wise <swise@opengridcomputing.com> * * Changes: */ struct dst_entry; struct neighbour; struct netevent_redirect { struct dst_entry *old; struct dst_entry *new; struct neighbour *neigh; const void *daddr; }; enum netevent_notif_type { NETEVENT_NEIGH_UPDATE = 1, /* arg is struct neighbour ptr */ NETEVENT_REDIRECT, /* arg is struct netevent_redirect ptr */ }; 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); #endifOverall Contributors
Person | Tokens | Prop | Commits | CommitProp | |
tom tucker | tom tucker | 67 | 80.72% | 1 | 25.00% |
david s. miller | david s. miller | 12 | 14.46% | 1 | 25.00% |
herbert xu | herbert xu | 3 | 3.61% | 1 | 25.00% |
hideaki yoshifuji | hideaki yoshifuji | 1 | 1.20% | 1 | 25.00% |
Total | 83 | 100.00% | 4 | 100.00% |