X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=adapter%2Fvppapiclient%2Fvppapiclient_stub.go;h=20ad12bdee2e81f2b12e3166d8e1f76351fe05e3;hb=4e16c7100cc7f8dddca051ff393460d7a1a77c98;hp=c5566c6715bd43ac54ace64a431ae2266959de93;hpb=6d6ad42ec0942a378c5550ad3472f388d7c85d49;p=govpp.git diff --git a/adapter/vppapiclient/vppapiclient_stub.go b/adapter/vppapiclient/vppapiclient_stub.go index c5566c6..20ad12b 100644 --- a/adapter/vppapiclient/vppapiclient_stub.go +++ b/adapter/vppapiclient/vppapiclient_stub.go @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -// +build windows darwin +// +build windows darwin novpp package vppapiclient @@ -28,6 +28,10 @@ func NewVppClient(string) adapter.VppAPI { return &stubVppClient{} } +func NewVppClientWithInputQueueSize(string, uint16) adapter.VppAPI { + return &stubVppClient{} +} + func (a *stubVppClient) Connect() error { return adapter.ErrNotImplemented }