summaryrefslogtreecommitdiffhomepage
path: root/table/table_manager.go
diff options
context:
space:
mode:
authorYuji Oshima <yuji.oshima0x3fd@gmail.com>2015-03-11 19:52:53 +0900
committerFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2015-03-11 19:52:53 +0900
commit2ada9126011a7f4d3ccbb02d2a9339e5c97d6292 (patch)
tree519e77e07d1bdd9833331cd4a7929e38a8729de6 /table/table_manager.go
parent27a1609aca0a448edf43afc149c5d863abf3b04a (diff)
table: IPv4_VPN route family
Diffstat (limited to 'table/table_manager.go')
-rw-r--r--table/table_manager.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/table/table_manager.go b/table/table_manager.go
index d0dd9f86..f2ff1ee6 100644
--- a/table/table_manager.go
+++ b/table/table_manager.go
@@ -138,6 +138,8 @@ func NewTableManager(owner string, rfList []bgp.RouteFamily) *TableManager {
t.Tables[bgp.RF_IPv4_UC] = NewIPv4Table(0)
case bgp.RF_IPv6_UC:
t.Tables[bgp.RF_IPv6_UC] = NewIPv6Table(0)
+ case bgp.RF_IPv4_VPN:
+ t.Tables[bgp.RF_IPv4_VPN] = NewIPv4VPNTable(0)
}
}
t.owner = owner