mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-15 01:24:33 +00:00
13 lines
253 B
C
13 lines
253 B
C
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||
|
#ifndef _NET_NEIGHBOUR_TABLES_H
|
||
|
#define _NET_NEIGHBOUR_TABLES_H
|
||
|
|
||
|
enum {
|
||
|
NEIGH_ARP_TABLE = 0,
|
||
|
NEIGH_ND_TABLE = 1,
|
||
|
NEIGH_NR_TABLES,
|
||
|
NEIGH_LINK_TABLE = NEIGH_NR_TABLES /* Pseudo table for neigh_xmit */
|
||
|
};
|
||
|
|
||
|
#endif
|