From be31f4746e6ee61dbe448ce0d49b8236bdbcc6f8 Mon Sep 17 00:00:00 2001 From: Jan Srnicek Date: Tue, 15 Aug 2017 12:19:24 +0200 Subject: HC2VPP docs update Change-Id: I43a1c149c881a829de4a6393bdcc0aa3cd5a336e Signed-off-by: Jan Srnicek --- .../asciidoc/devel_guide/devel_plugin_vpp_tutorial.adoc | 13 ++++--------- release-notes/src/main/asciidoc/release_notes.adoc | 12 ++++++++++++ 2 files changed, 16 insertions(+), 9 deletions(-) diff --git a/release-notes/src/main/asciidoc/devel_guide/devel_plugin_vpp_tutorial.adoc b/release-notes/src/main/asciidoc/devel_guide/devel_plugin_vpp_tutorial.adoc index c55e85ccc..716478788 100644 --- a/release-notes/src/main/asciidoc/devel_guide/devel_plugin_vpp_tutorial.adoc +++ b/release-notes/src/main/asciidoc/devel_guide/devel_plugin_vpp_tutorial.adoc @@ -394,15 +394,10 @@ public final class VxlanWriteCustomizer implements ListWriterCustomizer id, - @Nonnull final VxlanTunnel dataBefore, - @Nonnull final VxlanTunnel dataAfter, @Nonnull final WriteContext writeContext) - throws WriteFailedException { - // Not supported at VPP API level, throw exception - throw new WriteFailedException.UpdateFailedException(id, dataBefore, dataAfter, - new UnsupportedOperationException("Vxlan tunnel update is not supported by VPP")); - } + /** + * Most VPP apis does not support update, these updates are handled as delete+create pair invocation. + * If you want to implement update directly, please @Override method updateCurrentAttributes() + */ @Override public void deleteCurrentAttributes(@Nonnull final InstanceIdentifier id, diff --git a/release-notes/src/main/asciidoc/release_notes.adoc b/release-notes/src/main/asciidoc/release_notes.adoc index 7f9c84a82..c7df141f8 100644 --- a/release-notes/src/main/asciidoc/release_notes.adoc +++ b/release-notes/src/main/asciidoc/release_notes.adoc @@ -11,6 +11,18 @@ Adding to the list of existing features: https://docs.fd.io/hc2vpp/1.17.07/hc2vp === New features +* Lisp +** http://jira.fd.io/browse/HC2VPP-162[Locator pair] - Uses composite key mapping. Removes need for artificial mapping context +** http://jira.fd.io/browse/HC2VPP-209[Map Register TTL registration] +** http://jira.fd.io/browse/HC2VPP-210[Map Server fallback threshold] +** http://jira.fd.io/browse/HC2VPP-211[CP Protocol messages](TODO) +* NAT +** http://jira.fd.io/browse/HC2VPP-197[Post-routing NAT] +** http://jira.fd.io/browse/HC2VPP-105[NAT 64](In Progress) +* General +** Adaptation to ODL Carbon + + === Removed features === Modified features -- cgit 1.2.3-korg