diff options
author | Vladimir Lavor <vlavor@cisco.com> | 2018-05-02 09:47:44 +0200 |
---|---|---|
committer | Vladimir Lavor <vlavor@cisco.com> | 2018-05-02 09:47:44 +0200 |
commit | 3da2b73ec5ce77abf796ebeae6dfc149c8d3c698 (patch) | |
tree | 3119df3db2136d4f77c38547a6d0bdd549b52960 /examples/cmd/simple-client | |
parent | 0456d22f67865977065886ed58778621b21b7ede (diff) |
support for shm prefixes
Change-Id: I279653deb9911862d29143269aea5dffbd564478
Signed-off-by: Vladimir Lavor <vlavor@cisco.com>
Diffstat (limited to 'examples/cmd/simple-client')
-rw-r--r-- | examples/cmd/simple-client/simple_client.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/cmd/simple-client/simple_client.go b/examples/cmd/simple-client/simple_client.go index 8f10360..67dc14b 100644 --- a/examples/cmd/simple-client/simple_client.go +++ b/examples/cmd/simple-client/simple_client.go @@ -35,7 +35,7 @@ func main() { fmt.Println("Starting simple VPP client...") // connect to VPP - conn, err := govpp.Connect() + conn, err := govpp.Connect("") if err != nil { fmt.Println("Error:", err) os.Exit(1) @@ -218,4 +218,4 @@ func interfaceNotifications(ch *api.Channel) { // unsubscribe from delivery of the notifications ch.UnsubscribeNotification(subs) -} +}
\ No newline at end of file |