diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2006-03-22 15:37:45 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2006-03-22 15:37:45 +0000 |
commit | 93e62b255f32a33e21eed1171de38a9b05bb377c (patch) | |
tree | a9361799b3864331931046f56546bf40ae2891e6 /usr.sbin/ospfctl/parser.h | |
parent | 022bdc963534de84cbd86cddbcec6e0fd47a580c (diff) |
ospfd has the framework to couple and decouple the FIB. Add the needed
functionality to ospfctl for it.
NOTE: decoupling the FIB one a router may totaly fuck up the complete network.
Use it with care!
OK norby@
Diffstat (limited to 'usr.sbin/ospfctl/parser.h')
-rw-r--r-- | usr.sbin/ospfctl/parser.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.sbin/ospfctl/parser.h b/usr.sbin/ospfctl/parser.h index 79d7cc184f4..ac7dea40f42 100644 --- a/usr.sbin/ospfctl/parser.h +++ b/usr.sbin/ospfctl/parser.h @@ -1,4 +1,4 @@ -/* $OpenBSD: parser.h,v 1.6 2005/05/12 19:10:12 norby Exp $ */ +/* $OpenBSD: parser.h,v 1.7 2006/03/22 15:37:44 claudio Exp $ */ /* * Copyright (c) 2004 Esben Norby <norby@openbsd.org> @@ -26,6 +26,9 @@ enum actions { NONE, + FIB, + FIB_COUPLE, + FIB_DECOUPLE, SHOW, SHOW_SUM, SHOW_IFACE, |