diff options
author | Wojciech Dec <wdec@cisco.com> | 2016-11-01 16:44:06 +0100 |
---|---|---|
committer | Wojciech Dec <wdec@cisco.com> | 2016-11-14 10:03:40 +0000 |
commit | 558d5ebbb4c93286f119658bd7dcbc9642c6974b (patch) | |
tree | e77009d9fb0e7f414dc5f032ad93fd689c6e54c7 /vpp/vpp-api/api.c | |
parent | e30872e6606b4ce6fe1d6ff44be69e590427e45f (diff) |
Add support for multi FIB DHCPv6 Proxy
- Support multiple DHCPv6 server targets across VRFs
- Allows clients and servers to be in different VRFs
- Aligns CLI and VAT for DHCPv6 to DHCPv4
Change-Id: If47756b3a51dc1b9d045a32b7d32ceb80c1746e2
Signed-off-by: Wojciech Dec <wdec@cisco.com>
Diffstat (limited to 'vpp/vpp-api/api.c')
-rw-r--r-- | vpp/vpp-api/api.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/vpp/vpp-api/api.c b/vpp/vpp-api/api.c index 6852e02a..ea7b2a1d 100644 --- a/vpp/vpp-api/api.c +++ b/vpp/vpp-api/api.c @@ -3259,16 +3259,12 @@ dhcpv6_proxy_config_2 (vl_api_dhcp_proxy_config_2_t * mp) vl_api_dhcp_proxy_config_reply_t *rmp; int rv = -1; -#if 0 // $$$$ FIXME rv = dhcpv6_proxy_set_server_2 ((ip6_address_t *) (&mp->dhcp_server), (ip6_address_t *) (&mp->dhcp_src_address), (u32) ntohl (mp->rx_vrf_id), (u32) ntohl (mp->server_vrf_id), (int) mp->insert_circuit_id, (int) (mp->is_add == 0)); -#else - rv = VNET_API_ERROR_UNIMPLEMENTED; -#endif REPLY_MACRO (VL_API_DHCP_PROXY_CONFIG_2_REPLY); } |