diff options
author | Esben Norby <norby@cvs.openbsd.org> | 2005-05-12 19:10:13 +0000 |
---|---|---|
committer | Esben Norby <norby@cvs.openbsd.org> | 2005-05-12 19:10:13 +0000 |
commit | 87af8df0cfa319a592cd86ee0f15a509f7f68f4e (patch) | |
tree | 87e7d594ec73db7e00fb2c6f56e1a330fc16f031 /usr.sbin/ospfd/ospfe.c | |
parent | 0d2ea09ba3d08079bffd80802508fce862db44e6 (diff) |
Add "show database asbr/external/network/router/self-originate/summary"
to ospfctl.
Show detailed information about the LSAs in the Link State Database.
ok claudio@
Diffstat (limited to 'usr.sbin/ospfd/ospfe.c')
-rw-r--r-- | usr.sbin/ospfd/ospfe.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/usr.sbin/ospfd/ospfe.c b/usr.sbin/ospfd/ospfe.c index b3ebe1572ae..2952929f5bb 100644 --- a/usr.sbin/ospfd/ospfe.c +++ b/usr.sbin/ospfd/ospfe.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ospfe.c,v 1.19 2005/05/12 08:55:39 claudio Exp $ */ +/* $OpenBSD: ospfe.c,v 1.20 2005/05/12 19:10:12 norby Exp $ */ /* * Copyright (c) 2005 Claudio Jeker <claudio@openbsd.org> @@ -549,6 +549,12 @@ ospfe_dispatch_rde(int fd, short event, void *bula) case IMSG_CTL_AREA: case IMSG_CTL_END: case IMSG_CTL_SHOW_DATABASE: + case IMSG_CTL_SHOW_DB_EXT: + case IMSG_CTL_SHOW_DB_NET: + case IMSG_CTL_SHOW_DB_RTR: + case IMSG_CTL_SHOW_DB_SELF: + case IMSG_CTL_SHOW_DB_SUM: + case IMSG_CTL_SHOW_DB_ASBR: case IMSG_CTL_SHOW_RIB: case IMSG_CTL_SHOW_SUM: case IMSG_CTL_SHOW_SUM_AREA: |