diff options
author | hasso <hasso> | 2004-09-14 13:54:30 +0000 |
---|---|---|
committer | hasso <hasso> | 2004-09-14 13:54:30 +0000 |
commit | f891f4438d65e93d5a8224b1b579c9c089c91c27 (patch) | |
tree | 3d88a45a47f84fc81ca1e5cbb074df395fd44329 /isisd/isis_tlv.c | |
parent | 64a7afd6de67eebda09a6766aa27dbd722539363 (diff) |
Isisd is now able to remove addresses from circuit and trigger LSP updates
if it's done. Some random fixes as well and update to sample configuration.
Diffstat (limited to 'isisd/isis_tlv.c')
-rw-r--r-- | isisd/isis_tlv.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/isisd/isis_tlv.c b/isisd/isis_tlv.c index a35b6878..273d19c2 100644 --- a/isisd/isis_tlv.c +++ b/isisd/isis_tlv.c @@ -437,8 +437,10 @@ parse_tlvs (char *areatag, u_char * stream, int size, u_int32_t * expected, while (length > value_len) { ipv4_addr = (struct in_addr *) pnt; +#ifdef EXTREME_TLV_DEBUG zlog_info ("ISIS-TLV (%s) : IP ADDR %s, pnt %p", areatag, inet_ntoa (*ipv4_addr), pnt); +#endif /* EXTREME_TLV_DEBUG */ if (!tlvs->ipv4_addrs) tlvs->ipv4_addrs = list_new (); listnode_add (tlvs->ipv4_addrs, ipv4_addr); |