diff options
author | ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp> | 2015-08-10 01:25:18 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2015-08-12 08:04:31 +0900 |
commit | 5c066cc6a64b03126a737fb41954a62bae762806 (patch) | |
tree | 9c7c36561a75f3f4948bfd5ab1ae06a289a42c06 /server/fsm_test.go | |
parent | 163a9338fb13b10872889406079be95322cd0f46 (diff) |
bgp/cli: support flowspec (RFC5575)
draft-ietf-idr-flowspec-redirect-rt-bis-05 is also implmented.
TODO: draft-ietf-idr-flow-spec-v6-06
Signed-off-by: ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>
Diffstat (limited to 'server/fsm_test.go')
-rw-r--r-- | server/fsm_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/fsm_test.go b/server/fsm_test.go index 498c35b7..db9be4b3 100644 --- a/server/fsm_test.go +++ b/server/fsm_test.go @@ -290,7 +290,7 @@ func makePeerAndHandler() (*Peer, *FSMHandler) { p := &Peer{ gConf: gConf, conf: pConf, - capMap: make(map[bgp.BGPCapabilityCode]bgp.ParameterCapabilityInterface), + capMap: make(map[bgp.BGPCapabilityCode][]bgp.ParameterCapabilityInterface), } p.fsm = NewFSM(&gConf, &pConf) |