aboutsummaryrefslogtreecommitdiffstats
path: root/binapi/vpe/vpe_http.ba.go
diff options
context:
space:
mode:
Diffstat (limited to 'binapi/vpe/vpe_http.ba.go')
-rw-r--r--binapi/vpe/vpe_http.ba.go41
1 files changed, 41 insertions, 0 deletions
diff --git a/binapi/vpe/vpe_http.ba.go b/binapi/vpe/vpe_http.ba.go
new file mode 100644
index 0000000..cf66380
--- /dev/null
+++ b/binapi/vpe/vpe_http.ba.go
@@ -0,0 +1,41 @@
+// Code generated by GoVPP's binapi-generator. DO NOT EDIT.
+
+package vpe
+
+import (
+ "encoding/json"
+ "net/http"
+)
+
+func HTTPHandler(rpc RPCService) http.Handler {
+ mux := http.NewServeMux()
+ mux.HandleFunc("/show_version", func(w http.ResponseWriter, req *http.Request) {
+ var request = new(ShowVersion)
+ reply, err := rpc.ShowVersion(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("/show_vpe_system_time", func(w http.ResponseWriter, req *http.Request) {
+ var request = new(ShowVpeSystemTime)
+ reply, err := rpc.ShowVpeSystemTime(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)
+}