linux/include/net/netevent.h

/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _NET_EVENT_H
#define _NET_EVENT_H

/*
 *	Generic netevent notifiers
 *
 *	Authors:
 *      Tom Tucker              <[email protected]>
 *      Steve Wise              <[email protected]>
 *
 * 	Changes:
 */

struct dst_entry;
struct neighbour;
struct notifier_block ;

struct netevent_redirect {};

enum netevent_notif_type {};

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);

#endif