summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--config/default.go2
-rw-r--r--config/util.go2
-rw-r--r--docs/sources/lib.md2
-rw-r--r--gobgp/cmd/bmp.go2
-rw-r--r--gobgp/cmd/common.go2
-rw-r--r--gobgp/cmd/global.go2
-rw-r--r--gobgp/cmd/global_test.go2
-rw-r--r--gobgp/cmd/monitor.go2
-rw-r--r--gobgp/cmd/mrt.go2
-rw-r--r--gobgp/cmd/neighbor.go2
-rw-r--r--gobgp/cmd/rpki.go2
-rw-r--r--gobgp/cmd/vrf.go2
-rw-r--r--gobgp/lib/path.go2
-rw-r--r--gobmpd/main.go2
-rw-r--r--openswitch/openswitch.go2
-rw-r--r--packet/bgp/bgp.go (renamed from packet/bgp.go)0
-rw-r--r--packet/bgp/bgp_test.go (renamed from packet/bgp_test.go)0
-rw-r--r--packet/bgp/bgpattrtype_string.go (renamed from packet/bgpattrtype_string.go)0
-rw-r--r--packet/bgp/bgpcapabilitycode_string.go (renamed from packet/bgpcapabilitycode_string.go)0
-rw-r--r--packet/bgp/bmp.go (renamed from packet/bmp.go)0
-rw-r--r--packet/bgp/bmp_test.go (renamed from packet/bmp_test.go)0
-rw-r--r--packet/bgp/constant.go (renamed from packet/constant.go)0
-rw-r--r--packet/bgp/esitype_string.go (renamed from packet/esitype_string.go)0
-rw-r--r--packet/bgp/fsmstate_string.go (renamed from packet/fsmstate_string.go)0
-rw-r--r--packet/bgp/mrt.go (renamed from packet/mrt.go)0
-rw-r--r--packet/bgp/mrt_test.go (renamed from packet/mrt_test.go)0
-rw-r--r--packet/bgp/rtr.go (renamed from packet/rtr.go)0
-rw-r--r--packet/bgp/rtr_test.go (renamed from packet/rtr_test.go)0
-rw-r--r--packet/bgp/validate.go (renamed from packet/validate.go)0
-rw-r--r--packet/bgp/validate_test.go (renamed from packet/validate_test.go)0
-rw-r--r--server/bmp.go2
-rw-r--r--server/fsm.go2
-rw-r--r--server/fsm_test.go2
-rw-r--r--server/grpc_server.go2
-rw-r--r--server/monitor.go2
-rw-r--r--server/peer.go2
-rw-r--r--server/rpki.go2
-rw-r--r--server/rpki_test.go2
-rw-r--r--server/server.go2
-rw-r--r--server/watcher.go2
-rw-r--r--server/zclient.go2
-rw-r--r--table/adj.go2
-rw-r--r--table/destination.go2
-rw-r--r--table/destination_test.go2
-rw-r--r--table/message.go2
-rw-r--r--table/message_test.go2
-rw-r--r--table/path.go2
-rw-r--r--table/path_test.go2
-rw-r--r--table/policy.go2
-rw-r--r--table/policy_test.go2
-rw-r--r--table/table.go2
-rw-r--r--table/table_manager.go2
-rw-r--r--table/table_manager_test.go2
-rw-r--r--table/table_test.go2
-rw-r--r--table/vrf.go2
55 files changed, 40 insertions, 40 deletions
diff --git a/config/default.go b/config/default.go
index 5c9248ad..022f7458 100644
--- a/config/default.go
+++ b/config/default.go
@@ -2,7 +2,7 @@ package config
import (
"fmt"
- "github.com/osrg/gobgp/packet"
+ "github.com/osrg/gobgp/packet/bgp"
"github.com/spf13/viper"
"net"
)
diff --git a/config/util.go b/config/util.go
index 5d543b9c..47edc98f 100644
--- a/config/util.go
+++ b/config/util.go
@@ -17,7 +17,7 @@ package config
import (
"fmt"
- "github.com/osrg/gobgp/packet"
+ "github.com/osrg/gobgp/packet/bgp"
)
func IsConfederationMember(g *Global, p *Neighbor) bool {
diff --git a/docs/sources/lib.md b/docs/sources/lib.md
index 3856989e..c7b7389b 100644
--- a/docs/sources/lib.md
+++ b/docs/sources/lib.md
@@ -14,7 +14,7 @@ import (
log "github.com/Sirupsen/logrus"
api "github.com/osrg/gobgp/api"
"github.com/osrg/gobgp/gobgp/cmd"
- "github.com/osrg/gobgp/packet"
+ "github.com/osrg/gobgp/packet/bgp"
gobgp "github.com/osrg/gobgp/server"
)
diff --git a/gobgp/cmd/bmp.go b/gobgp/cmd/bmp.go
index 9a29070f..08d24ca0 100644
--- a/gobgp/cmd/bmp.go
+++ b/gobgp/cmd/bmp.go
@@ -18,7 +18,7 @@ package cmd
import (
"fmt"
api "github.com/osrg/gobgp/api"
- "github.com/osrg/gobgp/packet"
+ "github.com/osrg/gobgp/packet/bgp"
"github.com/spf13/cobra"
"golang.org/x/net/context"
"net"
diff --git a/gobgp/cmd/common.go b/gobgp/cmd/common.go
index 5694a572..4a6ef04c 100644
--- a/gobgp/cmd/common.go
+++ b/gobgp/cmd/common.go
@@ -20,7 +20,7 @@ import (
"encoding/json"
"fmt"
"github.com/osrg/gobgp/api"
- "github.com/osrg/gobgp/packet"
+ "github.com/osrg/gobgp/packet/bgp"
"google.golang.org/grpc"
"net"
"os"
diff --git a/gobgp/cmd/global.go b/gobgp/cmd/global.go
index abddc526..da4b623e 100644
--- a/gobgp/cmd/global.go
+++ b/gobgp/cmd/global.go
@@ -19,7 +19,7 @@ import (
"encoding/json"
"fmt"
api "github.com/osrg/gobgp/api"
- "github.com/osrg/gobgp/packet"
+ "github.com/osrg/gobgp/packet/bgp"
"github.com/osrg/gobgp/table"
"github.com/spf13/cobra"
"golang.org/x/net/context"
diff --git a/gobgp/cmd/global_test.go b/gobgp/cmd/global_test.go
index f567b200..8dc8171c 100644
--- a/gobgp/cmd/global_test.go
+++ b/gobgp/cmd/global_test.go
@@ -17,7 +17,7 @@ package cmd
import (
"fmt"
- "github.com/osrg/gobgp/packet"
+ "github.com/osrg/gobgp/packet/bgp"
"github.com/stretchr/testify/assert"
"strings"
"testing"
diff --git a/gobgp/cmd/monitor.go b/gobgp/cmd/monitor.go
index af6f6c74..ab55090e 100644
--- a/gobgp/cmd/monitor.go
+++ b/gobgp/cmd/monitor.go
@@ -19,7 +19,7 @@ import (
"encoding/json"
"fmt"
"github.com/osrg/gobgp/api"
- "github.com/osrg/gobgp/packet"
+ "github.com/osrg/gobgp/packet/bgp"
"github.com/spf13/cobra"
"golang.org/x/net/context"
"io"
diff --git a/gobgp/cmd/mrt.go b/gobgp/cmd/mrt.go
index bc28adee..c1063dd6 100644
--- a/gobgp/cmd/mrt.go
+++ b/gobgp/cmd/mrt.go
@@ -19,7 +19,7 @@ import (
"bytes"
"fmt"
api "github.com/osrg/gobgp/api"
- "github.com/osrg/gobgp/packet"
+ "github.com/osrg/gobgp/packet/bgp"
"github.com/spf13/cobra"
"golang.org/x/net/context"
"io"
diff --git a/gobgp/cmd/neighbor.go b/gobgp/cmd/neighbor.go
index 20821c7e..eb4c8068 100644
--- a/gobgp/cmd/neighbor.go
+++ b/gobgp/cmd/neighbor.go
@@ -20,7 +20,7 @@ import (
"fmt"
api "github.com/osrg/gobgp/api"
"github.com/osrg/gobgp/config"
- "github.com/osrg/gobgp/packet"
+ "github.com/osrg/gobgp/packet/bgp"
"github.com/spf13/cobra"
"golang.org/x/net/context"
"io"
diff --git a/gobgp/cmd/rpki.go b/gobgp/cmd/rpki.go
index 7aa8e40a..be5eacef 100644
--- a/gobgp/cmd/rpki.go
+++ b/gobgp/cmd/rpki.go
@@ -18,7 +18,7 @@ package cmd
import (
"fmt"
api "github.com/osrg/gobgp/api"
- "github.com/osrg/gobgp/packet"
+ "github.com/osrg/gobgp/packet/bgp"
"github.com/spf13/cobra"
"golang.org/x/net/context"
"io"
diff --git a/gobgp/cmd/vrf.go b/gobgp/cmd/vrf.go
index ad65214d..16848471 100644
--- a/gobgp/cmd/vrf.go
+++ b/gobgp/cmd/vrf.go
@@ -19,7 +19,7 @@ import (
"encoding/json"
"fmt"
api "github.com/osrg/gobgp/api"
- "github.com/osrg/gobgp/packet"
+ "github.com/osrg/gobgp/packet/bgp"
"github.com/spf13/cobra"
"golang.org/x/net/context"
"io"
diff --git a/gobgp/lib/path.go b/gobgp/lib/path.go
index 1788c98c..3fef6e42 100644
--- a/gobgp/lib/path.go
+++ b/gobgp/lib/path.go
@@ -37,7 +37,7 @@ import (
"strings"
"github.com/osrg/gobgp/gobgp/cmd"
- "github.com/osrg/gobgp/packet"
+ "github.com/osrg/gobgp/packet/bgp"
)
//export get_route_family
diff --git a/gobmpd/main.go b/gobmpd/main.go
index c6e68b04..c6cf99a4 100644
--- a/gobmpd/main.go
+++ b/gobmpd/main.go
@@ -20,7 +20,7 @@ import (
"encoding/json"
"fmt"
log "github.com/Sirupsen/logrus"
- "github.com/osrg/gobgp/packet"
+ "github.com/osrg/gobgp/packet/bgp"
"net"
"os"
"strconv"
diff --git a/openswitch/openswitch.go b/openswitch/openswitch.go
index 36d3c689..bf180bf4 100644
--- a/openswitch/openswitch.go
+++ b/openswitch/openswitch.go
@@ -20,7 +20,7 @@ import (
log "github.com/Sirupsen/logrus"
api "github.com/osrg/gobgp/api"
"github.com/osrg/gobgp/gobgp/cmd"
- "github.com/osrg/gobgp/packet"
+ "github.com/osrg/gobgp/packet/bgp"
"github.com/osrg/gobgp/server"
ovsdb "github.com/osrg/libovsdb"
"github.com/satori/go.uuid"
diff --git a/packet/bgp.go b/packet/bgp/bgp.go
index 34b812a0..34b812a0 100644
--- a/packet/bgp.go
+++ b/packet/bgp/bgp.go
diff --git a/packet/bgp_test.go b/packet/bgp/bgp_test.go
index 29aa4e69..29aa4e69 100644
--- a/packet/bgp_test.go
+++ b/packet/bgp/bgp_test.go
diff --git a/packet/bgpattrtype_string.go b/packet/bgp/bgpattrtype_string.go
index 1a2cf1d0..1a2cf1d0 100644
--- a/packet/bgpattrtype_string.go
+++ b/packet/bgp/bgpattrtype_string.go
diff --git a/packet/bgpcapabilitycode_string.go b/packet/bgp/bgpcapabilitycode_string.go
index 0dc70a87..0dc70a87 100644
--- a/packet/bgpcapabilitycode_string.go
+++ b/packet/bgp/bgpcapabilitycode_string.go
diff --git a/packet/bmp.go b/packet/bgp/bmp.go
index 4813aff9..4813aff9 100644
--- a/packet/bmp.go
+++ b/packet/bgp/bmp.go
diff --git a/packet/bmp_test.go b/packet/bgp/bmp_test.go
index e07c2455..e07c2455 100644
--- a/packet/bmp_test.go
+++ b/packet/bgp/bmp_test.go
diff --git a/packet/constant.go b/packet/bgp/constant.go
index aa9b17b9..aa9b17b9 100644
--- a/packet/constant.go
+++ b/packet/bgp/constant.go
diff --git a/packet/esitype_string.go b/packet/bgp/esitype_string.go
index 5651bda8..5651bda8 100644
--- a/packet/esitype_string.go
+++ b/packet/bgp/esitype_string.go
diff --git a/packet/fsmstate_string.go b/packet/bgp/fsmstate_string.go
index 4416afc1..4416afc1 100644
--- a/packet/fsmstate_string.go
+++ b/packet/bgp/fsmstate_string.go
diff --git a/packet/mrt.go b/packet/bgp/mrt.go
index 15dbc839..15dbc839 100644
--- a/packet/mrt.go
+++ b/packet/bgp/mrt.go
diff --git a/packet/mrt_test.go b/packet/bgp/mrt_test.go
index 11a233ec..11a233ec 100644
--- a/packet/mrt_test.go
+++ b/packet/bgp/mrt_test.go
diff --git a/packet/rtr.go b/packet/bgp/rtr.go
index 30657e15..30657e15 100644
--- a/packet/rtr.go
+++ b/packet/bgp/rtr.go
diff --git a/packet/rtr_test.go b/packet/bgp/rtr_test.go
index 0f9b9527..0f9b9527 100644
--- a/packet/rtr_test.go
+++ b/packet/bgp/rtr_test.go
diff --git a/packet/validate.go b/packet/bgp/validate.go
index 73697c4d..73697c4d 100644
--- a/packet/validate.go
+++ b/packet/bgp/validate.go
diff --git a/packet/validate_test.go b/packet/bgp/validate_test.go
index 6309c74d..6309c74d 100644
--- a/packet/validate_test.go
+++ b/packet/bgp/validate_test.go
diff --git a/server/bmp.go b/server/bmp.go
index bd748ed9..7ac79ada 100644
--- a/server/bmp.go
+++ b/server/bmp.go
@@ -19,7 +19,7 @@ import (
"fmt"
log "github.com/Sirupsen/logrus"
"github.com/osrg/gobgp/config"
- "github.com/osrg/gobgp/packet"
+ "github.com/osrg/gobgp/packet/bgp"
"github.com/osrg/gobgp/table"
"gopkg.in/tomb.v2"
"net"
diff --git a/server/fsm.go b/server/fsm.go
index 5fa12484..b5530f52 100644
--- a/server/fsm.go
+++ b/server/fsm.go
@@ -20,7 +20,7 @@ import (
log "github.com/Sirupsen/logrus"
"github.com/eapache/channels"
"github.com/osrg/gobgp/config"
- "github.com/osrg/gobgp/packet"
+ "github.com/osrg/gobgp/packet/bgp"
"github.com/osrg/gobgp/table"
"gopkg.in/tomb.v2"
"io"
diff --git a/server/fsm_test.go b/server/fsm_test.go
index 2cfce644..8d98d751 100644
--- a/server/fsm_test.go
+++ b/server/fsm_test.go
@@ -20,7 +20,7 @@ import (
log "github.com/Sirupsen/logrus"
"github.com/eapache/channels"
"github.com/osrg/gobgp/config"
- "github.com/osrg/gobgp/packet"
+ "github.com/osrg/gobgp/packet/bgp"
"github.com/osrg/gobgp/table"
"github.com/stretchr/testify/assert"
"net"
diff --git a/server/grpc_server.go b/server/grpc_server.go
index 1cce90bb..38b52f07 100644
--- a/server/grpc_server.go
+++ b/server/grpc_server.go
@@ -19,7 +19,7 @@ import (
"fmt"
log "github.com/Sirupsen/logrus"
api "github.com/osrg/gobgp/api"
- "github.com/osrg/gobgp/packet"
+ "github.com/osrg/gobgp/packet/bgp"
"golang.org/x/net/context"
"google.golang.org/grpc"
"io"
diff --git a/server/monitor.go b/server/monitor.go
index 4849f1eb..ac9c775b 100644
--- a/server/monitor.go
+++ b/server/monitor.go
@@ -17,7 +17,7 @@ package server
import (
api "github.com/osrg/gobgp/api"
- "github.com/osrg/gobgp/packet"
+ "github.com/osrg/gobgp/packet/bgp"
"github.com/osrg/gobgp/table"
"gopkg.in/tomb.v2"
)
diff --git a/server/peer.go b/server/peer.go
index 57994bcd..a8b67b63 100644
--- a/server/peer.go
+++ b/server/peer.go
@@ -21,7 +21,7 @@ import (
"github.com/eapache/channels"
api "github.com/osrg/gobgp/api"
"github.com/osrg/gobgp/config"
- "github.com/osrg/gobgp/packet"
+ "github.com/osrg/gobgp/packet/bgp"
"github.com/osrg/gobgp/table"
"net"
"time"
diff --git a/server/rpki.go b/server/rpki.go
index d019b0e8..329ee053 100644
--- a/server/rpki.go
+++ b/server/rpki.go
@@ -28,7 +28,7 @@ import (
"github.com/armon/go-radix"
api "github.com/osrg/gobgp/api"
"github.com/osrg/gobgp/config"
- "github.com/osrg/gobgp/packet"
+ "github.com/osrg/gobgp/packet/bgp"
"github.com/osrg/gobgp/table"
"gopkg.in/tomb.v2"
)
diff --git a/server/rpki_test.go b/server/rpki_test.go
index c51ba1ae..fb270cf7 100644
--- a/server/rpki_test.go
+++ b/server/rpki_test.go
@@ -23,7 +23,7 @@ import (
"github.com/armon/go-radix"
"github.com/osrg/gobgp/config"
- "github.com/osrg/gobgp/packet"
+ "github.com/osrg/gobgp/packet/bgp"
"github.com/stretchr/testify/assert"
)
diff --git a/server/server.go b/server/server.go
index d510ca7f..532a7416 100644
--- a/server/server.go
+++ b/server/server.go
@@ -29,7 +29,7 @@ import (
"github.com/eapache/channels"
api "github.com/osrg/gobgp/api"
"github.com/osrg/gobgp/config"
- "github.com/osrg/gobgp/packet"
+ "github.com/osrg/gobgp/packet/bgp"
"github.com/osrg/gobgp/table"
"github.com/osrg/gobgp/zebra"
"github.com/satori/go.uuid"
diff --git a/server/watcher.go b/server/watcher.go
index 4294d358..d3befa0e 100644
--- a/server/watcher.go
+++ b/server/watcher.go
@@ -18,7 +18,7 @@ package server
import (
"bytes"
log "github.com/Sirupsen/logrus"
- "github.com/osrg/gobgp/packet"
+ "github.com/osrg/gobgp/packet/bgp"
"github.com/osrg/gobgp/table"
"gopkg.in/tomb.v2"
"net"
diff --git a/server/zclient.go b/server/zclient.go
index b380e90e..e9116b2e 100644
--- a/server/zclient.go
+++ b/server/zclient.go
@@ -19,7 +19,7 @@ import (
"fmt"
log "github.com/Sirupsen/logrus"
"github.com/osrg/gobgp/config"
- "github.com/osrg/gobgp/packet"
+ "github.com/osrg/gobgp/packet/bgp"
"github.com/osrg/gobgp/table"
"github.com/osrg/gobgp/zebra"
"net"
diff --git a/table/adj.go b/table/adj.go
index 411f74f0..a58f87aa 100644
--- a/table/adj.go
+++ b/table/adj.go
@@ -16,7 +16,7 @@
package table
import (
- "github.com/osrg/gobgp/packet"
+ "github.com/osrg/gobgp/packet/bgp"
"reflect"
)
diff --git a/table/destination.go b/table/destination.go
index 8f9676b1..6839c608 100644
--- a/table/destination.go
+++ b/table/destination.go
@@ -22,7 +22,7 @@ import (
log "github.com/Sirupsen/logrus"
api "github.com/osrg/gobgp/api"
"github.com/osrg/gobgp/config"
- "github.com/osrg/gobgp/packet"
+ "github.com/osrg/gobgp/packet/bgp"
"net"
"sort"
)
diff --git a/table/destination_test.go b/table/destination_test.go
index f5556175..d7498142 100644
--- a/table/destination_test.go
+++ b/table/destination_test.go
@@ -17,7 +17,7 @@ package table
import (
//"fmt"
- "github.com/osrg/gobgp/packet"
+ "github.com/osrg/gobgp/packet/bgp"
"github.com/stretchr/testify/assert"
"net"
"testing"
diff --git a/table/message.go b/table/message.go
index 23f278bb..3d1d7e8d 100644
--- a/table/message.go
+++ b/table/message.go
@@ -18,7 +18,7 @@ package table
import (
"bytes"
log "github.com/Sirupsen/logrus"
- "github.com/osrg/gobgp/packet"
+ "github.com/osrg/gobgp/packet/bgp"
"hash/fnv"
)
diff --git a/table/message_test.go b/table/message_test.go
index 1f559c0e..01c9ae58 100644
--- a/table/message_test.go
+++ b/table/message_test.go
@@ -16,7 +16,7 @@
package table
import (
- "github.com/osrg/gobgp/packet"
+ "github.com/osrg/gobgp/packet/bgp"
"github.com/stretchr/testify/assert"
"testing"
"time"
diff --git a/table/path.go b/table/path.go
index 9469fe1d..397bfbdd 100644
--- a/table/path.go
+++ b/table/path.go
@@ -21,7 +21,7 @@ import (
log "github.com/Sirupsen/logrus"
api "github.com/osrg/gobgp/api"
"github.com/osrg/gobgp/config"
- "github.com/osrg/gobgp/packet"
+ "github.com/osrg/gobgp/packet/bgp"
"math"
"net"
"sort"
diff --git a/table/path_test.go b/table/path_test.go
index e12640e2..6e7a3534 100644
--- a/table/path_test.go
+++ b/table/path_test.go
@@ -6,7 +6,7 @@ import (
"testing"
"time"
- "github.com/osrg/gobgp/packet"
+ "github.com/osrg/gobgp/packet/bgp"
"github.com/stretchr/testify/assert"
)
diff --git a/table/policy.go b/table/policy.go
index 2e0550c6..2a8c759f 100644
--- a/table/policy.go
+++ b/table/policy.go
@@ -28,7 +28,7 @@ import (
"github.com/armon/go-radix"
api "github.com/osrg/gobgp/api"
"github.com/osrg/gobgp/config"
- "github.com/osrg/gobgp/packet"
+ "github.com/osrg/gobgp/packet/bgp"
)
type PolicyOptions struct {
diff --git a/table/policy_test.go b/table/policy_test.go
index 38b55794..71e1a723 100644
--- a/table/policy_test.go
+++ b/table/policy_test.go
@@ -19,7 +19,7 @@ import (
"fmt"
log "github.com/Sirupsen/logrus"
"github.com/osrg/gobgp/config"
- "github.com/osrg/gobgp/packet"
+ "github.com/osrg/gobgp/packet/bgp"
"github.com/stretchr/testify/assert"
"math"
"net"
diff --git a/table/table.go b/table/table.go
index 5c19c2e4..9246c6ff 100644
--- a/table/table.go
+++ b/table/table.go
@@ -17,7 +17,7 @@ package table
import (
log "github.com/Sirupsen/logrus"
- "github.com/osrg/gobgp/packet"
+ "github.com/osrg/gobgp/packet/bgp"
)
type Table struct {
diff --git a/table/table_manager.go b/table/table_manager.go
index a40e1221..287c5a46 100644
--- a/table/table_manager.go
+++ b/table/table_manager.go
@@ -19,7 +19,7 @@ import (
"bytes"
"fmt"
log "github.com/Sirupsen/logrus"
- "github.com/osrg/gobgp/packet"
+ "github.com/osrg/gobgp/packet/bgp"
"net"
"time"
)
diff --git a/table/table_manager_test.go b/table/table_manager_test.go
index 4732d3a3..38f16eaf 100644
--- a/table/table_manager_test.go
+++ b/table/table_manager_test.go
@@ -18,7 +18,7 @@ package table
import (
_ "fmt"
log "github.com/Sirupsen/logrus"
- "github.com/osrg/gobgp/packet"
+ "github.com/osrg/gobgp/packet/bgp"
"github.com/stretchr/testify/assert"
"net"
"os"
diff --git a/table/table_test.go b/table/table_test.go
index 9cec4133..bb51a4de 100644
--- a/table/table_test.go
+++ b/table/table_test.go
@@ -16,7 +16,7 @@
package table
import (
- "github.com/osrg/gobgp/packet"
+ "github.com/osrg/gobgp/packet/bgp"
"github.com/stretchr/testify/assert"
"testing"
"time"
diff --git a/table/vrf.go b/table/vrf.go
index d7b429e7..16e02ed4 100644
--- a/table/vrf.go
+++ b/table/vrf.go
@@ -17,7 +17,7 @@ package table
import (
api "github.com/osrg/gobgp/api"
- "github.com/osrg/gobgp/packet"
+ "github.com/osrg/gobgp/packet/bgp"
)
type Vrf struct {