diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/config/example_toml.go | 3 | ||||
-rw-r--r-- | tools/pyang_plugins/bgpyang2golang.py | 2 |
2 files changed, 2 insertions, 3 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", }}, } diff --git a/tools/pyang_plugins/bgpyang2golang.py b/tools/pyang_plugins/bgpyang2golang.py index 9fe8a8ee..569cc9bf 100644 --- a/tools/pyang_plugins/bgpyang2golang.py +++ b/tools/pyang_plugins/bgpyang2golang.py @@ -501,7 +501,7 @@ _type_translation_map = { 'boolean': 'bool', 'empty': 'bool', 'inet:ip-address': 'net.IP', - 'inet:ip-prefix': 'net.IPNet', + 'inet:ip-prefix': 'string', 'inet:ipv4-address': 'net.IP', 'inet:as-number': 'uint32', 'bgp-set-community-option-type' : 'string', |