aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRastislav Szabo <raszabo@cisco.com>2017-05-04 15:31:21 +0200
committerRastislav Szabo <raszabo@cisco.com>2017-05-04 15:31:37 +0200
commit87a66a4484dda9cb1b3552f133dc3d6e93539735 (patch)
tree1c60b9b9726b8fdda58914a385e4eda1f8f09441
parent6773171c3d619be5bb646cdc80ebfd4d7ae26376 (diff)
changes import paths from gerrit.fd.io/r/govpp.git to git.fd.io/govpp.git
Signed-off-by: Rastislav Szabo <raszabo@cisco.com>
-rw-r--r--adapter/mock/mock_adapter.go6
-rw-r--r--adapter/vppapiclient/empty_adapter.go2
-rw-r--r--adapter/vppapiclient/vppapiclient_adapter.go2
-rw-r--r--api/api_test.go16
-rw-r--r--binapi_generator/generator.go2
-rw-r--r--core/bin_api/vpe/vpe.go2
-rw-r--r--core/core.go6
-rw-r--r--core/core_test.go8
-rw-r--r--core/msg_codec.go2
-rw-r--r--core/notifications.go2
-rw-r--r--examples/bin_api/acl/acl.go2
-rw-r--r--examples/bin_api/af_packet/af_packet.go2
-rw-r--r--examples/bin_api/interfaces/interfaces.go2
-rw-r--r--examples/bin_api/ip/ip.go2
-rw-r--r--examples/bin_api/memif/memif.go2
-rw-r--r--examples/bin_api/tap/tap.go2
-rw-r--r--examples/bin_api/uflow/uflow.go2
-rw-r--r--examples/example_client.go14
-rwxr-xr-xexamples/examplesbin3006225 -> 3000780 bytes
-rw-r--r--glide.yaml2
-rw-r--r--govpp.go6
21 files changed, 42 insertions, 42 deletions
diff --git a/adapter/mock/mock_adapter.go b/adapter/mock/mock_adapter.go
index 556d396..ab49cef 100644
--- a/adapter/mock/mock_adapter.go
+++ b/adapter/mock/mock_adapter.go
@@ -24,9 +24,9 @@ import (
"github.com/lunixbochs/struc"
- "gerrit.fd.io/r/govpp.git/adapter"
- "gerrit.fd.io/r/govpp.git/adapter/mock/binapi_reflect"
- "gerrit.fd.io/r/govpp.git/api"
+ "git.fd.io/govpp.git/adapter"
+ "git.fd.io/govpp.git/adapter/mock/binapi_reflect"
+ "git.fd.io/govpp.git/api"
)
// VppAdapter represents a mock VPP adapter that can be used for unit/integration testing instead of the vppapiclient adapter.
diff --git a/adapter/vppapiclient/empty_adapter.go b/adapter/vppapiclient/empty_adapter.go
index 2145efe..14f804d 100644
--- a/adapter/vppapiclient/empty_adapter.go
+++ b/adapter/vppapiclient/empty_adapter.go
@@ -22,7 +22,7 @@
package vppapiclient
import (
- "gerrit.fd.io/r/govpp.git/adapter"
+ "git.fd.io/govpp.git/adapter"
)
type vppAPIClientAdapter struct{}
diff --git a/adapter/vppapiclient/vppapiclient_adapter.go b/adapter/vppapiclient/vppapiclient_adapter.go
index 82c820e..74f0118 100644
--- a/adapter/vppapiclient/vppapiclient_adapter.go
+++ b/adapter/vppapiclient/vppapiclient_adapter.go
@@ -82,7 +82,7 @@ import (
"reflect"
"unsafe"
- "gerrit.fd.io/r/govpp.git/adapter"
+ "git.fd.io/govpp.git/adapter"
)
// vppAPIClientAdapter is the opaque context of the adapter.
diff --git a/api/api_test.go b/api/api_test.go
index 13aec7f..e7592e0 100644
--- a/api/api_test.go
+++ b/api/api_test.go
@@ -18,14 +18,14 @@ import (
"testing"
"time"
- "gerrit.fd.io/r/govpp.git"
- "gerrit.fd.io/r/govpp.git/adapter/mock"
- "gerrit.fd.io/r/govpp.git/api"
- "gerrit.fd.io/r/govpp.git/core"
- "gerrit.fd.io/r/govpp.git/core/bin_api/vpe"
- "gerrit.fd.io/r/govpp.git/examples/bin_api/interfaces"
- "gerrit.fd.io/r/govpp.git/examples/bin_api/memif"
- "gerrit.fd.io/r/govpp.git/examples/bin_api/tap"
+ "git.fd.io/govpp.git"
+ "git.fd.io/govpp.git/adapter/mock"
+ "git.fd.io/govpp.git/api"
+ "git.fd.io/govpp.git/core"
+ "git.fd.io/govpp.git/core/bin_api/vpe"
+ "git.fd.io/govpp.git/examples/bin_api/interfaces"
+ "git.fd.io/govpp.git/examples/bin_api/memif"
+ "git.fd.io/govpp.git/examples/bin_api/tap"
. "github.com/onsi/gomega"
)
diff --git a/binapi_generator/generator.go b/binapi_generator/generator.go
index 537a4d4..43f9ede 100644
--- a/binapi_generator/generator.go
+++ b/binapi_generator/generator.go
@@ -43,7 +43,7 @@ const (
)
const (
- apiImportPath = "gerrit.fd.io/r/govpp.git/api" // import path of the govpp API
+ apiImportPath = "git.fd.io/govpp.git/api" // import path of the govpp API
inputFileExt = ".json" // filename extension of files that should be processed as the input
)
diff --git a/core/bin_api/vpe/vpe.go b/core/bin_api/vpe/vpe.go
index b0a775f..07e35d4 100644
--- a/core/bin_api/vpe/vpe.go
+++ b/core/bin_api/vpe/vpe.go
@@ -2,7 +2,7 @@
// DO NOT EDIT. Generated from '/usr/share/vpp/api/vpe.api.json' on Thu, 04 May 2017 13:11:57 CEST.
package vpe
-import "gerrit.fd.io/r/govpp.git/api"
+import "git.fd.io/govpp.git/api"
// VlApiVersion contains version of the API.
const VlAPIVersion = 0x0a33c8f7
diff --git a/core/core.go b/core/core.go
index 930831d..7dc45de 100644
--- a/core/core.go
+++ b/core/core.go
@@ -25,9 +25,9 @@ import (
logger "github.com/Sirupsen/logrus"
- "gerrit.fd.io/r/govpp.git/adapter"
- "gerrit.fd.io/r/govpp.git/api"
- "gerrit.fd.io/r/govpp.git/core/bin_api/vpe"
+ "git.fd.io/govpp.git/adapter"
+ "git.fd.io/govpp.git/api"
+ "git.fd.io/govpp.git/core/bin_api/vpe"
)
const (
diff --git a/core/core_test.go b/core/core_test.go
index 9159b13..8bf9311 100644
--- a/core/core_test.go
+++ b/core/core_test.go
@@ -17,10 +17,10 @@ package core
import (
"testing"
- "gerrit.fd.io/r/govpp.git/adapter/mock"
- "gerrit.fd.io/r/govpp.git/api"
- "gerrit.fd.io/r/govpp.git/core/bin_api/vpe"
- "gerrit.fd.io/r/govpp.git/examples/bin_api/interfaces"
+ "git.fd.io/govpp.git/adapter/mock"
+ "git.fd.io/govpp.git/api"
+ "git.fd.io/govpp.git/core/bin_api/vpe"
+ "git.fd.io/govpp.git/examples/bin_api/interfaces"
. "github.com/onsi/gomega"
)
diff --git a/core/msg_codec.go b/core/msg_codec.go
index 95f6170..5614a7e 100644
--- a/core/msg_codec.go
+++ b/core/msg_codec.go
@@ -23,7 +23,7 @@ import (
logger "github.com/Sirupsen/logrus"
"github.com/lunixbochs/struc"
- "gerrit.fd.io/r/govpp.git/api"
+ "git.fd.io/govpp.git/api"
)
// MsgCodec provides encoding and decoding functionality of `api.Message` structs into/from
diff --git a/core/notifications.go b/core/notifications.go
index c23e610..5cd132c 100644
--- a/core/notifications.go
+++ b/core/notifications.go
@@ -20,7 +20,7 @@ import (
logger "github.com/Sirupsen/logrus"
- "gerrit.fd.io/r/govpp.git/api"
+ "git.fd.io/govpp.git/api"
)
// processNotifSubscribeRequest processes a notification subscribe request.
diff --git a/examples/bin_api/acl/acl.go b/examples/bin_api/acl/acl.go
index 990b579..e13fb18 100644
--- a/examples/bin_api/acl/acl.go
+++ b/examples/bin_api/acl/acl.go
@@ -2,7 +2,7 @@
// DO NOT EDIT. Generated from 'bin_api/acl.api.json' on Thu, 04 May 2017 13:11:57 CEST.
package acl
-import "gerrit.fd.io/r/govpp.git/api"
+import "git.fd.io/govpp.git/api"
// VlApiVersion contains version of the API.
const VlAPIVersion = 0x3cd02d84
diff --git a/examples/bin_api/af_packet/af_packet.go b/examples/bin_api/af_packet/af_packet.go
index 0062054..c8b60f9 100644
--- a/examples/bin_api/af_packet/af_packet.go
+++ b/examples/bin_api/af_packet/af_packet.go
@@ -2,7 +2,7 @@
// DO NOT EDIT. Generated from 'bin_api/af_packet.api.json' on Thu, 04 May 2017 13:11:57 CEST.
package af_packet
-import "gerrit.fd.io/r/govpp.git/api"
+import "git.fd.io/govpp.git/api"
// VlApiVersion contains version of the API.
const VlAPIVersion = 0x4ca71f33
diff --git a/examples/bin_api/interfaces/interfaces.go b/examples/bin_api/interfaces/interfaces.go
index f3c8fab..a83b517 100644
--- a/examples/bin_api/interfaces/interfaces.go
+++ b/examples/bin_api/interfaces/interfaces.go
@@ -2,7 +2,7 @@
// DO NOT EDIT. Generated from 'bin_api/interface.api.json' on Thu, 04 May 2017 13:11:57 CEST.
package interfaces
-import "gerrit.fd.io/r/govpp.git/api"
+import "git.fd.io/govpp.git/api"
// VlApiVersion contains version of the API.
const VlAPIVersion = 0x6857f668
diff --git a/examples/bin_api/ip/ip.go b/examples/bin_api/ip/ip.go
index 6991d4e..1db05d4 100644
--- a/examples/bin_api/ip/ip.go
+++ b/examples/bin_api/ip/ip.go
@@ -2,7 +2,7 @@
// DO NOT EDIT. Generated from 'bin_api/ip.api.json' on Thu, 04 May 2017 13:11:57 CEST.
package ip
-import "gerrit.fd.io/r/govpp.git/api"
+import "git.fd.io/govpp.git/api"
// VlApiVersion contains version of the API.
const VlAPIVersion = 0x6a819870
diff --git a/examples/bin_api/memif/memif.go b/examples/bin_api/memif/memif.go
index a64529a..c7c27f4 100644
--- a/examples/bin_api/memif/memif.go
+++ b/examples/bin_api/memif/memif.go
@@ -2,7 +2,7 @@
// DO NOT EDIT. Generated from 'bin_api/memif.api.json' on Thu, 04 May 2017 13:11:57 CEST.
package memif
-import "gerrit.fd.io/r/govpp.git/api"
+import "git.fd.io/govpp.git/api"
// VlApiVersion contains version of the API.
const VlAPIVersion = 0xadb63e82
diff --git a/examples/bin_api/tap/tap.go b/examples/bin_api/tap/tap.go
index 6df73c3..a3d6df7 100644
--- a/examples/bin_api/tap/tap.go
+++ b/examples/bin_api/tap/tap.go
@@ -2,7 +2,7 @@
// DO NOT EDIT. Generated from 'bin_api/tap.api.json' on Thu, 04 May 2017 13:11:57 CEST.
package tap
-import "gerrit.fd.io/r/govpp.git/api"
+import "git.fd.io/govpp.git/api"
// VlApiVersion contains version of the API.
const VlAPIVersion = 0x1aedb9f2
diff --git a/examples/bin_api/uflow/uflow.go b/examples/bin_api/uflow/uflow.go
index b02ee12..f33d14f 100644
--- a/examples/bin_api/uflow/uflow.go
+++ b/examples/bin_api/uflow/uflow.go
@@ -2,7 +2,7 @@
// DO NOT EDIT. Generated from 'bin_api/uflow.api.json' on Thu, 04 May 2017 13:11:57 CEST.
package uflow
-import "gerrit.fd.io/r/govpp.git/api"
+import "git.fd.io/govpp.git/api"
// VlApiVersion contains version of the API.
const VlAPIVersion = 0x85909300
diff --git a/examples/example_client.go b/examples/example_client.go
index 3004780..6030469 100644
--- a/examples/example_client.go
+++ b/examples/example_client.go
@@ -24,13 +24,13 @@ import (
"os"
"os/signal"
- "gerrit.fd.io/r/govpp.git"
- "gerrit.fd.io/r/govpp.git/api"
- "gerrit.fd.io/r/govpp.git/api/ifcounters"
- "gerrit.fd.io/r/govpp.git/core/bin_api/vpe"
- "gerrit.fd.io/r/govpp.git/examples/bin_api/acl"
- "gerrit.fd.io/r/govpp.git/examples/bin_api/interfaces"
- "gerrit.fd.io/r/govpp.git/examples/bin_api/tap"
+ "git.fd.io/govpp.git"
+ "git.fd.io/govpp.git/api"
+ "git.fd.io/govpp.git/api/ifcounters"
+ "git.fd.io/govpp.git/core/bin_api/vpe"
+ "git.fd.io/govpp.git/examples/bin_api/acl"
+ "git.fd.io/govpp.git/examples/bin_api/interfaces"
+ "git.fd.io/govpp.git/examples/bin_api/tap"
)
func main() {
diff --git a/examples/examples b/examples/examples
index b02014f..ce4dbaf 100755
--- a/examples/examples
+++ b/examples/examples
Binary files differ
diff --git a/glide.yaml b/glide.yaml
index d79102f..3cf9e37 100644
--- a/glide.yaml
+++ b/glide.yaml
@@ -1,4 +1,4 @@
-package: gerrit.fd.io/r/govpp.git
+package: git.fd.io/govpp.git
import:
- package: github.com/Sirupsen/logrus
version: v0.11.5
diff --git a/govpp.go b/govpp.go
index 82ee5f8..5d3ed7f 100644
--- a/govpp.go
+++ b/govpp.go
@@ -15,9 +15,9 @@
package govpp
import (
- "gerrit.fd.io/r/govpp.git/adapter"
- "gerrit.fd.io/r/govpp.git/adapter/vppapiclient"
- "gerrit.fd.io/r/govpp.git/core"
+ "git.fd.io/govpp.git/adapter"
+ "git.fd.io/govpp.git/adapter/vppapiclient"
+ "git.fd.io/govpp.git/core"
)
var vppAdapter adapter.VppAdapter // VPP Adapter that will be used in the subsequent Connect calls