Fix build: remove call to removed function

This commit is contained in:
Rayhaan Jaufeerally
2024-10-07 10:27:56 +00:00
parent 8c371648d0
commit f55066c1fb

View File

@ -1288,13 +1288,6 @@ where
async fn handle_established_msg(&mut self, msg: BGPSubmessage) -> Result<()> { async fn handle_established_msg(&mut self, msg: BGPSubmessage) -> Result<()> {
match msg { match msg {
BGPSubmessage::UpdateMessage(u) => { BGPSubmessage::UpdateMessage(u) => {
if !self.decide_accept_message(&u.path_attributes) {
info!(
"Rejected message due to path attributes: {:?}",
u.path_attributes
);
}
// Have a seperate path for calling Multiprotocol NLRI processing. // Have a seperate path for calling Multiprotocol NLRI processing.
for attr in &u.path_attributes { for attr in &u.path_attributes {
match attr { match attr {