Change module name to go.fd.io/govpp
[govpp.git] / adapter / vppapiclient / vppapiclient_stub.go
index c5566c6..57b71c3 100644 (file)
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
-// +build windows darwin
+// +build windows darwin novpp
 
 package vppapiclient
 
 import (
-       "git.fd.io/govpp.git/adapter"
+       "go.fd.io/govpp/adapter"
 )
 
 // stubVppClient is just an stub adapter that does nothing. It builds only on Windows and OSX, where the real
@@ -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
 }