From 558d5ebbb4c93286f119658bd7dcbc9642c6974b Mon Sep 17 00:00:00 2001 From: Wojciech Dec Date: Tue, 1 Nov 2016 16:44:06 +0100 Subject: 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 --- vpp/vpp-api/api.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'vpp') diff --git a/vpp/vpp-api/api.c b/vpp/vpp-api/api.c index 6852e02a5d6..ea7b2a1defa 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); } -- cgit 1.2.3-korg