summaryrefslogtreecommitdiffhomepage
path: root/table
diff options
context:
space:
mode:
authorFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2015-03-10 00:48:20 +0900
committerFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2015-03-10 00:48:20 +0900
commit564cbd963887f8cc8d91d9c28371e06e059caea0 (patch)
tree3b4e26b394056a869128923ac1153e3684f480fe /table
parenta71bd7802a404c1c279326d3b0107470e383c05e (diff)
table: use github.com/tchap/go-patricia/patricia instead of our fork
The fix for sorting is merged: https://github.com/tchap/go-patricia/commit/f8d475d887c8f22feb1c7d6748f2864681be53b3 Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Diffstat (limited to 'table')
-rw-r--r--table/table.go2
-rw-r--r--table/table_manager.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/table/table.go b/table/table.go
index 94ae7189..2bc328d8 100644
--- a/table/table.go
+++ b/table/table.go
@@ -20,8 +20,8 @@ import (
"encoding/json"
"fmt"
log "github.com/Sirupsen/logrus"
- "github.com/osrg/go-patricia/patricia"
"github.com/osrg/gobgp/packet"
+ "github.com/tchap/go-patricia/patricia"
"net"
"reflect"
)
diff --git a/table/table_manager.go b/table/table_manager.go
index d14fec5b..d0dd9f86 100644
--- a/table/table_manager.go
+++ b/table/table_manager.go
@@ -17,8 +17,8 @@ package table
import (
log "github.com/Sirupsen/logrus"
- "github.com/osrg/go-patricia/patricia"
"github.com/osrg/gobgp/packet"
+ "github.com/tchap/go-patricia/patricia"
"reflect"
"time"
)