From 3da2b73ec5ce77abf796ebeae6dfc149c8d3c698 Mon Sep 17 00:00:00 2001 From: Vladimir Lavor Date: Wed, 2 May 2018 09:47:44 +0200 Subject: support for shm prefixes Change-Id: I279653deb9911862d29143269aea5dffbd564478 Signed-off-by: Vladimir Lavor --- examples/cmd/stats-client/stats_client.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/cmd/stats-client') diff --git a/examples/cmd/stats-client/stats_client.go b/examples/cmd/stats-client/stats_client.go index 458da21..17c7956 100644 --- a/examples/cmd/stats-client/stats_client.go +++ b/examples/cmd/stats-client/stats_client.go @@ -35,7 +35,7 @@ func main() { fmt.Println("Starting stats VPP client...") // async connect to VPP - conn, statCh, err := govpp.AsyncConnect() + conn, statCh, err := govpp.AsyncConnect("") if err != nil { fmt.Println("Error:", err) os.Exit(1) @@ -141,4 +141,4 @@ func processCombinedCounters(counters *interfaces.VnetInterfaceCombinedCounters) counters.FirstSwIfIndex+i, counterNames[counters.VnetCounterType], counters.Data[i].Packets, counterNames[counters.VnetCounterType], counters.Data[i].Bytes) } -} +} \ No newline at end of file -- cgit 1.2.3-korg