aboutsummaryrefslogtreecommitdiffstats
path: root/binapi/pp2/pp2_rest.ba.go
diff options
context:
space:
mode:
authorVladimir Lavor <vlavor@cisco.com>2020-09-16 13:44:31 +0200
committerVladimir Lavor <vlavor@cisco.com>2020-09-18 10:41:12 +0200
commit43cd23926d5eec359d4b554a4330e1aa596c76de (patch)
tree344b7d9a19e2ec84b6f7aaa7c7667a8b94d06ab4 /binapi/pp2/pp2_rest.ba.go
parente517439567ad843033257664fdfe90a9173b0aa6 (diff)
binapigen: fix union size
This change fixes calculated byte size of the union composed from another union(s). Change-Id: I596a3c2a585cc42570b1d00dab3a5ad4993dabfa Signed-off-by: Vladimir Lavor <vlavor@cisco.com>
Diffstat (limited to 'binapi/pp2/pp2_rest.ba.go')
-rw-r--r--binapi/pp2/pp2_rest.ba.go60
1 files changed, 0 insertions, 60 deletions
diff --git a/binapi/pp2/pp2_rest.ba.go b/binapi/pp2/pp2_rest.ba.go
deleted file mode 100644
index d3e69c0..0000000
--- a/binapi/pp2/pp2_rest.ba.go
+++ /dev/null
@@ -1,60 +0,0 @@
-// Code generated by GoVPP's binapi-generator. DO NOT EDIT.
-
-package pp2
-
-import (
- "encoding/json"
- "io/ioutil"
- "net/http"
-)
-
-func RESTHandler(rpc RPCService) http.Handler {
- mux := http.NewServeMux()
- mux.HandleFunc("/mrvl_pp2_create", func(w http.ResponseWriter, req *http.Request) {
- var request = new(MrvlPp2Create)
- 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.MrvlPp2Create(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)
- })
- mux.HandleFunc("/mrvl_pp2_delete", func(w http.ResponseWriter, req *http.Request) {
- var request = new(MrvlPp2Delete)
- 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.MrvlPp2Delete(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)
-}