diff options
| author | Russ White <russ@riw.us> | 2018-06-01 16:00:14 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-06-01 16:00:14 -0400 |
| commit | ebb46153b06a48fa5402b850ad8041a469f1a26d (patch) | |
| tree | a6ec353d90185ef0b11262aeb77b275766e0ed65 /lib/zclient.h | |
| parent | 65757481f05eae3de3aa6b6e08702045e7341552 (diff) | |
| parent | 2bb9eff45f93d4a76f0121e6ab31d55f34554925 (diff) | |
Merge pull request #2245 from donaldsharp/type_4
Support EVPN Type 4 Routes
Diffstat (limited to 'lib/zclient.h')
| -rw-r--r-- | lib/zclient.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/zclient.h b/lib/zclient.h index 2ec03acc44..ad98b8db87 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,10 @@ 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 command, struct zclient *zclient, + uint16_t length, vrf_id_t vrf_id); + int (*local_es_del)(int command, struct zclient *zclient, + uint16_t length, vrf_id_t vrf_id); 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); |
