diff options
author | mhalaj1 <matus.halaj@pantheon.tech> | 2021-07-22 11:58:59 +0200 |
---|---|---|
committer | Ondrej Fabry <ofabry@cisco.com> | 2021-08-10 10:00:27 +0000 |
commit | c0da1f2999a6b08d003c0fed1a23e1ca60dd1571 (patch) | |
tree | 03fba410b5d2331e00f7cc32261cf75db5f9e3a7 /api | |
parent | 24f179dbb9534ed7c05bee2a80f18b55443706ab (diff) |
proxy update to vpp 20.05
Signed-off-by: mhalaj1 <matus.halaj@pantheon.tech>
Change-Id: I1c7b11950756d0fe789eb7badc3e883c12826671
Diffstat (limited to 'api')
-rw-r--r-- | api/api.go | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,4 +1,4 @@ -// Copyright (c) 2020 Cisco and/or its affiliates. +// Copyright (c) 2021 Cisco and/or its affiliates. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -28,7 +28,8 @@ type Connection interface { NewStream(ctx context.Context, options ...StreamOption) (Stream, error) // Invoke can be used for a simple request-reply RPC. - // It creates stream and calls SendMsg with req and RecvMsg with reply. + // It creates stream and calls SendMsg with req and RecvMsg which returns + // reply. Invoke(ctx context.Context, req Message, reply Message) error } |