diff options
| author | Russ White <russ@riw.us> | 2018-02-27 08:32:42 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-02-27 08:32:42 -0500 |
| commit | 8bc92a3ec7e3a8202416c5d23504e09e3ff42799 (patch) | |
| tree | f4e75f57317b02f59bbb11890241efd63acf1c65 /lib/zclient.h | |
| parent | 7a684566d4b6bd031933b211df8ac503509401ba (diff) | |
| parent | 28b11f81061b12f599daf8016d948ca59a2f38cc (diff) | |
Merge pull request #1799 from donaldsharp/route_notify_owner
Route notify owner
Diffstat (limited to 'lib/zclient.h')
| -rw-r--r-- | lib/zclient.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/zclient.h b/lib/zclient.h index d8a70c6cf3..4c84af1f61 100644 --- a/lib/zclient.h +++ b/lib/zclient.h @@ -213,8 +213,8 @@ struct zclient { int (*local_macip_add)(int, struct zclient *, uint16_t, vrf_id_t); int (*local_macip_del)(int, struct zclient *, uint16_t, vrf_id_t); int (*pw_status_update)(int, struct zclient *, uint16_t, vrf_id_t); - int (*notify_owner)(int command, struct zclient *zclient, - uint16_t length, vrf_id_t vrf_id); + int (*route_notify_owner)(int command, struct zclient *zclient, + uint16_t length, vrf_id_t vrf_id); }; /* Zebra API message flag. */ @@ -513,6 +513,7 @@ extern int zclient_send_rnh(struct zclient *zclient, int command, extern int zapi_route_encode(u_char, struct stream *, struct zapi_route *); extern int zapi_route_decode(struct stream *, struct zapi_route *); bool zapi_route_notify_decode(struct stream *s, struct prefix *p, + uint32_t *tableid, enum zapi_route_notify_owner *note); extern struct nexthop *nexthop_from_zapi_nexthop(struct zapi_nexthop *znh); extern bool zapi_nexthop_update_decode(struct stream *s, |
