diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2018-02-10 01:27:52 +0100 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2018-02-23 20:45:57 +0100 |
commit | 28610f7e444dbb2ea4175582f84e566a6645927b (patch) | |
tree | 4af0dfe041b19506f2da76ee05098d9fb6bef41b /eigrpd | |
parent | Merge pull request #1793 from qlyoung/stylechecker (diff) | |
download | frr-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.c | 3 |
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, ¬e)) + if (!zapi_route_notify_decode(zclient->ibuf, &p, &table, ¬e)) return -1; return 0; |