diff --git a/code/bngblaster/src/isis/isis_p2p_hello.c b/code/bngblaster/src/isis/isis_p2p_hello.c index fceb28c9..dc158ab7 100644 --- a/code/bngblaster/src/isis/isis_p2p_hello.c +++ b/code/bngblaster/src/isis/isis_p2p_hello.c @@ -168,7 +168,7 @@ isis_p2p_hello_handler_rx(bbl_network_interface_s *interface, isis_pdu_s *pdu) if(peer_state == ISIS_PEER_STATE_UP) { adjacency_p2p->state = ISIS_P2P_ADJACENCY_STATE_UP; } else { - adjacency_p2p->state = ISIS_PEER_STATE_INIT; + adjacency_p2p->state = ISIS_P2P_ADJACENCY_STATE_INIT; } for(int i=0; iisis_adjacency[i]; diff --git a/code/bngblaster/src/isis/isis_peer.c b/code/bngblaster/src/isis/isis_peer.c index 923bdff5..19d33b42 100644 --- a/code/bngblaster/src/isis/isis_peer.c +++ b/code/bngblaster/src/isis/isis_peer.c @@ -53,7 +53,8 @@ isis_peer_hold_timeout_p2p(timer_s *timer) return; } peer->state = ISIS_PEER_STATE_DOWN; - + adjacency_p2p->state = ISIS_P2P_ADJACENCY_STATE_DOWN; + LOG(ISIS, "ISIS P2P hold timeout to %s on interface %s\n", isis_system_id_to_str(peer->system_id), interface->name);