aboutsummaryrefslogtreecommitdiffstats
path: root/binapi/ioam_cache
diff options
context:
space:
mode:
Diffstat (limited to 'binapi/ioam_cache')
-rw-r--r--binapi/ioam_cache/ioam_cache.ba.go8
-rw-r--r--binapi/ioam_cache/ioam_cache_rest.ba.go37
-rw-r--r--binapi/ioam_cache/ioam_cache_rpc.ba.go7
3 files changed, 8 insertions, 44 deletions
diff --git a/binapi/ioam_cache/ioam_cache.ba.go b/binapi/ioam_cache/ioam_cache.ba.go
index 2f9f0ef..22da832 100644
--- a/binapi/ioam_cache/ioam_cache.ba.go
+++ b/binapi/ioam_cache/ioam_cache.ba.go
@@ -1,7 +1,7 @@
// Code generated by GoVPP's binapi-generator. DO NOT EDIT.
// versions:
-// binapi-generator: v0.4.0-dev
-// VPP: 20.05-release
+// binapi-generator: v0.6.0-dev
+// VPP: 22.02-release
// source: /usr/share/vpp/api/plugins/ioam_cache.api.json
// Package ioam_cache contains generated bindings for API file ioam_cache.api.
@@ -12,8 +12,8 @@
package ioam_cache
import (
- api "git.fd.io/govpp.git/api"
- codec "git.fd.io/govpp.git/codec"
+ api "go.fd.io/govpp/api"
+ codec "go.fd.io/govpp/codec"
)
// This is a compile-time assertion to ensure that this generated file
diff --git a/binapi/ioam_cache/ioam_cache_rest.ba.go b/binapi/ioam_cache/ioam_cache_rest.ba.go
deleted file mode 100644
index 4090307..0000000
--- a/binapi/ioam_cache/ioam_cache_rest.ba.go
+++ /dev/null
@@ -1,37 +0,0 @@
-// Code generated by GoVPP's binapi-generator. DO NOT EDIT.
-
-package ioam_cache
-
-import (
- "encoding/json"
- "io/ioutil"
- "net/http"
-)
-
-func RESTHandler(rpc RPCService) http.Handler {
- mux := http.NewServeMux()
- mux.HandleFunc("/ioam_cache_ip6_enable_disable", func(w http.ResponseWriter, req *http.Request) {
- var request = new(IoamCacheIP6EnableDisable)
- b, err := ioutil.ReadAll(req.Body)
- if err != nil {
- http.Error(w, "read body failed", http.StatusBadRequest)
- return
- }
- if err := json.Unmarshal(b, request); err != nil {
- http.Error(w, "unmarshal data failed", http.StatusBadRequest)
- return
- }
- reply, err := rpc.IoamCacheIP6EnableDisable(req.Context(), request)
- if err != nil {
- http.Error(w, "request failed: "+err.Error(), http.StatusInternalServerError)
- return
- }
- rep, err := json.MarshalIndent(reply, "", " ")
- if err != nil {
- http.Error(w, "marshal failed: "+err.Error(), http.StatusInternalServerError)
- return
- }
- w.Write(rep)
- })
- return http.HandlerFunc(mux.ServeHTTP)
-}
diff --git a/binapi/ioam_cache/ioam_cache_rpc.ba.go b/binapi/ioam_cache/ioam_cache_rpc.ba.go
index 33a721f..619181a 100644
--- a/binapi/ioam_cache/ioam_cache_rpc.ba.go
+++ b/binapi/ioam_cache/ioam_cache_rpc.ba.go
@@ -4,10 +4,11 @@ package ioam_cache
import (
"context"
- api "git.fd.io/govpp.git/api"
+
+ api "go.fd.io/govpp/api"
)
-// RPCService defines RPC service ioam_cache.
+// RPCService defines RPC service ioam_cache.
type RPCService interface {
IoamCacheIP6EnableDisable(ctx context.Context, in *IoamCacheIP6EnableDisable) (*IoamCacheIP6EnableDisableReply, error)
}
@@ -26,5 +27,5 @@ func (c *serviceClient) IoamCacheIP6EnableDisable(ctx context.Context, in *IoamC
if err != nil {
return nil, err
}
- return out, nil
+ return out, api.RetvalToVPPApiError(out.Retval)
}