diff options
| author | mitesh <mitesh@cumulusnetworks.com> | 2018-04-13 15:01:12 -0700 |
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2018-05-30 07:48:20 -0400 |
| commit | 50f74cf1310572457f742f630c43aaba9b8f2c17 (patch) | |
| tree | 495844a44ec1e532eb06c25201e8412d2fd46abd /lib/zclient.h | |
| parent | 68542a6da651a4a3f5d280482313f14508618c43 (diff) | |
*: support for evpn type-4 route
Signed-off-by: Mitesh Kanjariya <mitesh@cumulusnetworks.com>
Diffstat (limited to 'lib/zclient.h')
| -rw-r--r-- | lib/zclient.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/zclient.h b/lib/zclient.h index 2ec03acc44..ceb4dc74f9 100644 --- a/lib/zclient.h +++ b/lib/zclient.h @@ -124,6 +124,8 @@ typedef enum { ZEBRA_ADVERTISE_DEFAULT_GW, ZEBRA_ADVERTISE_SUBNET, ZEBRA_ADVERTISE_ALL_VNI, + ZEBRA_LOCAL_ES_ADD, + ZEBRA_LOCAL_ES_DEL, ZEBRA_VNI_ADD, ZEBRA_VNI_DEL, ZEBRA_L3VNI_ADD, @@ -237,6 +239,8 @@ struct zclient { int (*redistribute_route_del)(int, struct zclient *, uint16_t, vrf_id_t); int (*fec_update)(int, struct zclient *, uint16_t); + int (*local_es_add)(int, struct zclient *, uint16_t, vrf_id_t); + int (*local_es_del)(int, struct zclient *, uint16_t, vrf_id_t); int (*local_vni_add)(int, struct zclient *, uint16_t, vrf_id_t); int (*local_vni_del)(int, struct zclient *, uint16_t, vrf_id_t); int (*local_l3vni_add)(int, struct zclient *, uint16_t, vrf_id_t); |
