diff options
author | Philippe Guibert <philippe.guibert@6wind.com> | 2017-01-20 10:48:42 +0100 |
---|---|---|
committer | Philippe Guibert <philippe.guibert@6wind.com> | 2017-02-14 13:58:58 +0100 |
commit | a2dac1ef6a4f0dc3cc4e2bac83700119ff8b7459 (patch) | |
tree | baa1e16fb6d81e445a8a97c76365226a128bf42b /bgpd/bgp_route.h | |
parent | bgpd: introduction of vxlan tunnel attribute (diff) | |
download | frr-a2dac1ef6a4f0dc3cc4e2bac83700119ff8b7459.tar.xz frr-a2dac1ef6a4f0dc3cc4e2bac83700119ff8b7459.zip |
bgpd: add EVPN RT5 gatewayIp address to bgp_static context
This field can be either IPv4 or IPv6 address and is filled in in
bgp_static configuration structure.
Signed-off-by: Philippe Guibert <philippe.guibert@6wind.com>
Diffstat (limited to 'bgpd/bgp_route.h')
-rw-r--r-- | bgpd/bgp_route.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bgpd/bgp_route.h b/bgpd/bgp_route.h index 20465fbf0..85a8cea86 100644 --- a/bgpd/bgp_route.h +++ b/bgpd/bgp_route.h @@ -208,6 +208,7 @@ struct bgp_static struct eth_segment_id *eth_s_id; char *router_mac; uint16_t encap_tunneltype; + struct prefix gatewayIp; }; #define BGP_NEXTHOP_AFI_FROM_NHLEN(nhlen) \ |