summaryrefslogtreecommitdiffstats
path: root/eigrpd
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@cumulusnetworks.com>2018-02-10 01:27:52 +0100
committerDonald Sharp <sharpd@cumulusnetworks.com>2018-02-23 20:45:57 +0100
commit28610f7e444dbb2ea4175582f84e566a6645927b (patch)
tree4af0dfe041b19506f2da76ee05098d9fb6bef41b /eigrpd
parentMerge pull request #1793 from qlyoung/stylechecker (diff)
downloadfrr-28610f7e444dbb2ea4175582f84e566a6645927b.tar.xz
frr-28610f7e444dbb2ea4175582f84e566a6645927b.zip
*: Add tableid the route entry was sent to
Add for the southbound pass back the route entries tableid used for installation. Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'eigrpd')
-rw-r--r--eigrpd/eigrp_zebra.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/eigrpd/eigrp_zebra.c b/eigrpd/eigrp_zebra.c
index 3759c6414..513fda06f 100644
--- a/eigrpd/eigrp_zebra.c
+++ b/eigrpd/eigrp_zebra.c
@@ -99,8 +99,9 @@ static int eigrp_zebra_notify_owner(int command, struct zclient *zclient,
{
struct prefix p;
enum zapi_route_notify_owner note;
+ uint32_t table;
- if (!zapi_route_notify_decode(zclient->ibuf, &p, &note))
+ if (!zapi_route_notify_decode(zclient->ibuf, &p, &table, &note))
return -1;
return 0;