diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2018-02-09 19:27:52 -0500 |
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2018-02-23 14:45:57 -0500 |
| commit | 28610f7e444dbb2ea4175582f84e566a6645927b (patch) | |
| tree | 4af0dfe041b19506f2da76ee05098d9fb6bef41b /eigrpd | |
| parent | 8d056acc82e16b83a56d82960e1d3f3dfbabfef9 (diff) | |
*: 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 3759c64148..513fda06f3 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; |
