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.c | |
| parent | 65757481f05eae3de3aa6b6e08702045e7341552 (diff) | |
| parent | 2bb9eff45f93d4a76f0121e6ab31d55f34554925 (diff) | |
Merge pull request #2245 from donaldsharp/type_4
Support EVPN Type 4 Routes
Diffstat (limited to 'lib/zclient.c')
| -rw-r--r-- | lib/zclient.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/zclient.c b/lib/zclient.c index 0f7cf350db..38a9e6c78e 100644 --- a/lib/zclient.c +++ b/lib/zclient.c @@ -2760,6 +2760,16 @@ static int zclient_read(struct thread *thread) if (zclient->fec_update) (*zclient->fec_update)(command, zclient, length); break; + case ZEBRA_LOCAL_ES_ADD: + if (zclient->local_es_add) + (*zclient->local_es_add)(command, zclient, length, + vrf_id); + break; + case ZEBRA_LOCAL_ES_DEL: + if (zclient->local_es_del) + (*zclient->local_es_del)(command, zclient, length, + vrf_id); + break; case ZEBRA_VNI_ADD: if (zclient->local_vni_add) (*zclient->local_vni_add)(command, zclient, length, |
