diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2015-07-18 15:51:18 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2015-07-18 15:51:18 +0000 |
commit | 2271698f85393fb0d080c95f2232ce5bca8baf31 (patch) | |
tree | 8b799caea4e40a4941422811d640a5cf14608159 /sys/conf | |
parent | cfe2dd9907ff6b16160feb76eff7dc874abe1c8e (diff) |
Abstract the routing table internals behind an rtable_* API.
Code abusing the radix internals for the routing table should now
includes <net/rtable.h> and only deal with "struct rtentry".
Code using a radix tree for another purpose can still include
<net/radix.h>.
Inputs from and ok claudio@, mikeb@
Diffstat (limited to 'sys/conf')
-rw-r--r-- | sys/conf/files | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/conf/files b/sys/conf/files index 0abdacef3f9..46676604e37 100644 --- a/sys/conf/files +++ b/sys/conf/files @@ -1,4 +1,4 @@ -# $OpenBSD: files,v 1.595 2015/07/17 22:52:29 tedu Exp $ +# $OpenBSD: files,v 1.596 2015/07/18 15:51:16 mpi Exp $ # $NetBSD: files,v 1.87 1996/05/19 17:17:50 jonathan Exp $ # @(#)files.newconf 7.5 (Berkeley) 5/10/93 @@ -776,6 +776,7 @@ file net/radix.c file net/radix_mpath.c !small_kernel file net/raw_cb.c file net/raw_usrreq.c +file net/rtable.c file net/route.c file net/rtsock.c file net/slcompress.c ppp |