neighbour_tables.h 253 B

123456789101112
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _NET_NEIGHBOUR_TABLES_H
  3. #define _NET_NEIGHBOUR_TABLES_H
  4. enum {
  5. NEIGH_ARP_TABLE = 0,
  6. NEIGH_ND_TABLE = 1,
  7. NEIGH_NR_TABLES,
  8. NEIGH_LINK_TABLE = NEIGH_NR_TABLES /* Pseudo table for neigh_xmit */
  9. };
  10. #endif