diff options
| author | Philippe Guibert <philippe.guibert@6wind.com> | 2018-02-08 11:46:29 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-02-08 11:46:29 +0100 |
| commit | 8e71b98f72e843d4910abd02410f07fe1e6565cc (patch) | |
| tree | a84f92632eb0deed948f6b961c489573ede1ac0b /zebra/zserv.c | |
| parent | 25236dd35df008a1484f2605299c8228ea1cfc5b (diff) | |
| parent | 9d00a48754440cc9d4674e9b9405642edd983f0f (diff) | |
Merge pull request #1654 from mkanjari/evpn-symm-routing-enhancements
Evpn symmetric routing enhancements
Diffstat (limited to 'zebra/zserv.c')
| -rw-r--r-- | zebra/zserv.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/zebra/zserv.c b/zebra/zserv.c index 3ee2bb59ec..71437bab15 100644 --- a/zebra/zserv.c +++ b/zebra/zserv.c @@ -2603,6 +2603,9 @@ static inline void zserv_handle_commands(struct zserv *client, case ZEBRA_ADVERTISE_DEFAULT_GW: zebra_vxlan_advertise_gw_macip(client, length, zvrf); break; + case ZEBRA_ADVERTISE_SUBNET: + zebra_vxlan_advertise_subnet(client, length, zvrf); + break; case ZEBRA_ADVERTISE_ALL_VNI: zebra_vxlan_advertise_all_vni(client, length, zvrf); break; |
