diff options
author | Naoto Hanaue <hanaue.naoto@po.ntts.co.jp> | 2015-08-05 17:21:51 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2015-08-05 22:12:24 +0900 |
commit | ad4bfac371e545e2713e9157cc6e5f6af5278635 (patch) | |
tree | 46e44865c4b74af43c262f366c5fa3d0cb870b11 /tools/config/example_toml.go | |
parent | 0b5bb073128b3000f383927a997d4a40d274f569 (diff) |
config: change type of Prefix in the PrefixSet
Diffstat (limited to 'tools/config/example_toml.go')
-rw-r--r-- | tools/config/example_toml.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/config/example_toml.go b/tools/config/example_toml.go index 51ab4ae6..4988f648 100644 --- a/tools/config/example_toml.go +++ b/tools/config/example_toml.go @@ -75,12 +75,11 @@ func main() { func policy() config.RoutingPolicy { - _, prefix1, _ := net.ParseCIDR("10.3.192.0/21") ps := config.PrefixSet{ PrefixSetName: "ps1", PrefixList: []config.Prefix{ config.Prefix{ - IpPrefix: *prefix1, + IpPrefix: "10.3.192.0/21", MasklengthRange: "21..24", }}, } |