svn commit: r368127 - head/sys/net
Alexander V. Chernikov
melifaro at FreeBSD.org
Sat Nov 28 15:12:00 UTC 2020
Author: melifaro
Date: Sat Nov 28 15:11:59 2020
New Revision: 368127
URL: https://svnweb.freebsd.org/changeset/base/368127
Log:
Cleanup nexthops request flags:
* remove NHR_IFAIF as it was used by previous version of nexthop KPI
* update NHR_REF description
Modified:
head/sys/net/route.h
Modified: head/sys/net/route.h
==============================================================================
--- head/sys/net/route.h Sat Nov 28 15:00:08 2020 (r368126)
+++ head/sys/net/route.h Sat Nov 28 15:11:59 2020 (r368127)
@@ -223,8 +223,7 @@ VNET_DECLARE(u_int, fib_hash_outbound);
/* Nexthop request flags */
#define NHR_NONE 0x00 /* empty flags field */
-#define NHR_IFAIF 0x01 /* Return ifa_ifp interface */
-#define NHR_REF 0x02 /* For future use */
+#define NHR_REF 0x02 /* reference nexhop */
/* uRPF */
#define NHR_NODEFAULT 0x04 /* do not consider default route */
More information about the svn-src-head
mailing list