summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--gobgp/cmd/neighbor.go21
1 files changed, 0 insertions, 21 deletions
diff --git a/gobgp/cmd/neighbor.go b/gobgp/cmd/neighbor.go
index f08d49b0..6a028cf9 100644
--- a/gobgp/cmd/neighbor.go
+++ b/gobgp/cmd/neighbor.go
@@ -398,8 +398,6 @@ func showNeighborRib(r string, name string, args []string) error {
return err
}
- var prefix string
- var host net.IP
arg := &api.Table{
Type: resource,
Family: uint32(rf),
@@ -439,27 +437,8 @@ func showNeighborRib(r string, name string, args []string) error {
}
dsts := []*Destination{}
- maxOnes := 0
counter := 0
for _, d := range rib.Destinations {
- if prefix != "" && prefix != d.Prefix {
- continue
- }
- if host != nil {
- _, prefix, _ := net.ParseCIDR(d.Prefix)
- ones, _ := prefix.Mask.Size()
- if prefix.Contains(host) {
- if maxOnes < ones {
- dsts = []*Destination{}
- maxOnes = ones
- } else if maxOnes > ones {
- continue
- }
- } else {
- continue
- }
- }
-
dst, err := ApiStruct2Destination(d)
if err != nil {
return err