aboutsummaryrefslogtreecommitdiffstats
path: root/proxy/proxy.go
diff options
context:
space:
mode:
Diffstat (limited to 'proxy/proxy.go')
-rw-r--r--proxy/proxy.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/proxy/proxy.go b/proxy/proxy.go
index 6656ee5..49c650d 100644
--- a/proxy/proxy.go
+++ b/proxy/proxy.go
@@ -51,19 +51,19 @@ func NewServer() (*Server, error) {
}
func (p *Server) ConnectStats(stats adapter.StatsAPI) error {
- return p.statsRPC.Connect(stats)
+ return p.statsRPC.connect(stats)
}
func (p *Server) DisconnectStats() {
- p.statsRPC.Disconnect()
+ p.statsRPC.disconnect()
}
func (p *Server) ConnectBinapi(binapi adapter.VppAPI) error {
- return p.binapiRPC.Connect(binapi)
+ return p.binapiRPC.connect(binapi)
}
func (p *Server) DisconnectBinapi() {
- p.binapiRPC.Disconnect()
+ p.binapiRPC.disconnect()
}
func (p *Server) ServeHTTP(w http.ResponseWriter, req *http.Request) {