Frees the routing table entry.
#include <sys/types.h> #include <sys/errno.h> #include <net/route.h>
int rtfree (rt) register struct rtentry *rt;
rt | Specifies the routing table entry. |
The rtfree kernel service frees the entry it is passed from the routing table. If the route does not exist, the panic service is called. Otherwise, the rtfree service frees the mbuf structure that contains the route and decrements the routing reference counters.
The rtfree kernel service can be called from either the process or interrupt environment.
The rtfree kernel service has no return values.
To free a routing table entry, invoke the rtfree kernel service as follows:
rtfree(rt);
The rtfree kernel service is part of Base Operating System (BOS) Runtime.
The panic kernel service.
Network Kernel Services in AIX Kernel Extensions and Device Support Programming Concepts.