Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion fpmsyncd/fpmlink.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,11 @@ void FpmLink::processFpmMessage(fpm_msg_hdr_t* hdr)
/* EVPN Type5 Add route processing */
processRawMsg(nl_hdr);
}
else if(nl_hdr->nlmsg_type == RTM_NEWNEXTHOP || nl_hdr->nlmsg_type == RTM_DELNEXTHOP)
{
/* rtnl api dont support RTM_NEWNEXTHOP/RTM_DELNEXTHOP yet. Processing as raw message*/
processRawMsg(nl_hdr);
}
else
{
NetDispatcher::getInstance().onNetlinkMessage(msg);
Expand Down Expand Up @@ -320,4 +325,4 @@ bool FpmLink::send(nlmsghdr* nl_hdr)
}

return true;
}
}
Loading
Loading