Changeset View
Changeset View
Standalone View
Standalone View
sys/net/route.c
| Show All 33 Lines | |||||
| /************************************************************************ | /************************************************************************ | ||||
| * Note: In this file a 'fib' is a "forwarding information base" * | * Note: In this file a 'fib' is a "forwarding information base" * | ||||
| * Which is the new name for an in kernel routing (next hop) table. * | * Which is the new name for an in kernel routing (next hop) table. * | ||||
| ***********************************************************************/ | ***********************************************************************/ | ||||
| #include "opt_inet.h" | #include "opt_inet.h" | ||||
| #include "opt_inet6.h" | #include "opt_inet6.h" | ||||
| #include "opt_mrouting.h" | #include "opt_mrouting.h" | ||||
| #include "opt_mpath.h" | |||||
| #include "opt_route.h" | #include "opt_route.h" | ||||
| #include <sys/param.h> | #include <sys/param.h> | ||||
| #include <sys/systm.h> | #include <sys/systm.h> | ||||
| #include <sys/malloc.h> | #include <sys/malloc.h> | ||||
| #include <sys/mbuf.h> | #include <sys/mbuf.h> | ||||
| #include <sys/socket.h> | #include <sys/socket.h> | ||||
| #include <sys/sysctl.h> | #include <sys/sysctl.h> | ||||
| ▲ Show 20 Lines • Show All 1,097 Lines • Show Last 20 Lines | |||||