diff options
author | Esben Norby <norby@cvs.openbsd.org> | 2005-03-08 20:12:19 +0000 |
---|---|---|
committer | Esben Norby <norby@cvs.openbsd.org> | 2005-03-08 20:12:19 +0000 |
commit | 2408e77c2b26bb3c27a86356760d6d234729c6a3 (patch) | |
tree | 5a4b53690dcaffcca9150e86ccfc7903a7f878f6 /usr.sbin/ospfd/ospfd.h | |
parent | 8b9ec75dc9dc9f6ee62f699f99dbf7ba2d6a2185 (diff) |
Remove no longer valid route entries.
ok claudio@
Diffstat (limited to 'usr.sbin/ospfd/ospfd.h')
-rw-r--r-- | usr.sbin/ospfd/ospfd.h | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/usr.sbin/ospfd/ospfd.h b/usr.sbin/ospfd/ospfd.h index f449f8513e3..3496c29bdc8 100644 --- a/usr.sbin/ospfd/ospfd.h +++ b/usr.sbin/ospfd/ospfd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ospfd.h,v 1.12 2005/03/07 10:28:14 claudio Exp $ */ +/* $OpenBSD: ospfd.h,v 1.13 2005/03/08 20:12:18 norby Exp $ */ /* * Copyright (c) 2004 Esben Norby <norby@openbsd.org> @@ -223,6 +223,16 @@ enum spf_state { SPF_HOLDQUEUE }; +enum dst_type { + DT_NET, + DT_RTR +}; + +static const char * const dst_type_names[] = { + "Network", + "Router" +}; + enum path_type { PT_INTRA_AREA, PT_INTER_AREA, @@ -233,8 +243,8 @@ enum path_type { static const char * const path_type_names[] = { "Intra-Area", "Inter-Area", - "Type 1 external", - "Type 2 external" + "Type 1 ext", + "Type 2 ext" }; /* lsa list used in RDE and OE */ |