diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2008-12-30 21:31:55 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2008-12-30 21:31:55 +0000 |
commit | de58bbea1e28236af28a78f29205a9c6347b358f (patch) | |
tree | d6294ff6baaba943c8bd1c642068401be136b514 /usr.sbin/ospf6d/rde.c | |
parent | d2c65efb855d90b10ba26d735f53c8fc5d7e4ca4 (diff) |
First try at originating Link (type-8) LSA. Code is wrong and the initial
LSA is lost in lsa_flood. Put this in because it goes in the right direction
and ospf6d is work in progress. Add necessary framework so that we can print
Link LSA in ospf6ctl.
Diff mostly from stsp@ ospf6ctl part by myself
Diffstat (limited to 'usr.sbin/ospf6d/rde.c')
-rw-r--r-- | usr.sbin/ospf6d/rde.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/ospf6d/rde.c b/usr.sbin/ospf6d/rde.c index 30a8925d048..cdbc3a04031 100644 --- a/usr.sbin/ospf6d/rde.c +++ b/usr.sbin/ospf6d/rde.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rde.c,v 1.12 2008/12/28 18:43:53 claudio Exp $ */ +/* $OpenBSD: rde.c,v 1.13 2008/12/30 21:31:54 claudio Exp $ */ /* * Copyright (c) 2004, 2005 Claudio Jeker <claudio@openbsd.org> @@ -488,6 +488,7 @@ rde_dispatch_imsg(int fd, short event, void *bula) break; case IMSG_CTL_SHOW_DATABASE: case IMSG_CTL_SHOW_DB_EXT: + case IMSG_CTL_SHOW_DB_LINK: case IMSG_CTL_SHOW_DB_NET: case IMSG_CTL_SHOW_DB_RTR: case IMSG_CTL_SHOW_DB_SELF: |