diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2009-06-06 01:07:02 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2009-06-06 01:07:02 +0000 |
commit | f1c395125acf7c5bdeb01ecdcf91dc81045d10da (patch) | |
tree | 6f99c3397b95aa20d6818c34e4097f4386f48f66 /usr.sbin/bgpd/rde.h | |
parent | 7b467a55243b27419a4d75d2c570e2f7cf5fc2c5 (diff) |
Only the main Loc-RIB should update the FIB for now. So introduce a
F_RIB_NOFIB flag and apply it on all RIBs that are not F_RIB_NOEVALUATE.
Diffstat (limited to 'usr.sbin/bgpd/rde.h')
-rw-r--r-- | usr.sbin/bgpd/rde.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/bgpd/rde.h b/usr.sbin/bgpd/rde.h index 236b035d07f..41874f39e85 100644 --- a/usr.sbin/bgpd/rde.h +++ b/usr.sbin/bgpd/rde.h @@ -1,4 +1,4 @@ -/* $OpenBSD: rde.h,v 1.118 2009/06/06 01:02:51 claudio Exp $ */ +/* $OpenBSD: rde.h,v 1.119 2009/06/06 01:07:01 claudio Exp $ */ /* * Copyright (c) 2003, 2004 Claudio Jeker <claudio@openbsd.org> and @@ -278,6 +278,7 @@ struct rib { #define F_RIB_ENTRYLOCK 0x0001 #define F_RIB_NOEVALUATE 0x0002 +#define F_RIB_NOFIB 0x0004 #define RIB_FAILED 0xffff struct prefix { |