diff options
author | Juraj Sloboda <jsloboda@cisco.com> | 2018-10-22 09:57:13 +0200 |
---|---|---|
committer | Ole Trøan <otroan@employees.org> | 2018-11-12 11:28:38 +0000 |
commit | 5bb1ecae8786fdf0fffde9e956a5cee477b5df20 (patch) | |
tree | 8393dd09ff8cd3ba565e686520da5af9daf6f372 /src/vnet/ip/ip.api | |
parent | 89666384a3f3a901c0452d051966faecc8cabe88 (diff) |
IPv6: Make link-local configurable per-interface (VPP-1446)
Remove old nonfunctional code for setting link-local addresses.
Use common API for setting all IPv6 addresses.
Change-Id: I562329df86341f81ef2441510a9eefbbf710f6e0
Signed-off-by: Juraj Sloboda <jsloboda@cisco.com>
Signed-off-by: Matus Fabian <matfabia@cisco.com>
Diffstat (limited to 'src/vnet/ip/ip.api')
-rw-r--r-- | src/vnet/ip/ip.api | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/vnet/ip/ip.api b/src/vnet/ip/ip.api index 954ec92967f..cf25291b9bf 100644 --- a/src/vnet/ip/ip.api +++ b/src/vnet/ip/ip.api @@ -356,20 +356,6 @@ autoreply define sw_interface_ip6_enable_disable u8 enable; /* set to true if enable */ }; -/** \brief IPv6 set link local address on interface request - @param client_index - opaque cookie to identify the sender - @param context - sender context, to match reply w/ request - @param sw_if_index - interface to set link local on - @param address[] - the new link local address -*/ -autoreply define sw_interface_ip6_set_link_local_address -{ - u32 client_index; - u32 context; - u32 sw_if_index; - u8 address[16]; -}; - /** \brief Add / del route request @param client_index - opaque cookie to identify the sender @param context - sender context, to match reply w/ request |