diff options
author | Fritz Reichmann <fritz@reichmann.nl> | 2009-08-06 18:53:56 +0000 |
---|---|---|
committer | David Lamparter <equinox@diac24.net> | 2010-02-03 05:09:28 +0100 |
commit | 386b1b80a728f6d02a4de665e8ac3b3163efc0b3 (patch) | |
tree | 9fb72376d277e6ef6c86302fa9cb174dbff25f40 /isisd/isis_tlv.c | |
parent | 0b30acef9df4ff0cd172ae459a9fe6abb673dc7d (diff) | |
download | quagga-386b1b80a728f6d02a4de665e8ac3b3163efc0b3.tar.bz2 quagga-386b1b80a728f6d02a4de665e8ac3b3163efc0b3.tar.xz |
isisd: fixes 7/7: bug #544: unexpected kernel routing table
Fix Bug 544: isisd produces an unexpected routing table for wide-metric.
* isis_spf.c: Accept VTYPE_PSEUDO_TE_IS and VTYPE_NONPSEUDO_TE_IS
vertex types for SPF calculation
* isis_pdu.c: Change order of TLVs to match Cisco to make bitwise
comparision easier for Wireshark.
* isis_tlv.c: EXTREME_TLV_DEBUG for TLV debugging instead of EXTREME_DEBUG
CSNP triple sending rate (fix 8/7) is merged into this patch.
Cc: David Lamparter <equinox@diac24.net>
Diffstat (limited to 'isisd/isis_tlv.c')
-rw-r--r-- | isisd/isis_tlv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/isisd/isis_tlv.c b/isisd/isis_tlv.c index 94fa65ed..9fffef51 100644 --- a/isisd/isis_tlv.c +++ b/isisd/isis_tlv.c @@ -741,7 +741,7 @@ add_tlv (u_char tag, u_char len, u_char * value, struct stream *stream) stream_putc (stream, len); /* LENGTH */ stream_put (stream, value, (int) len); /* VALUE */ -#ifdef EXTREME_DEBUG +#ifdef EXTREME_TLV_DEBUG zlog_debug ("Added TLV %d len %d", tag, len); #endif /* EXTREME DEBUG */ return ISIS_OK; |