diff options
author | ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp> | 2016-01-08 13:43:05 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2016-01-09 05:17:57 -0800 |
commit | 75d4e2a9abc2bff53b6b5b6cb5397a0491603c31 (patch) | |
tree | 4899d9be15c601633f3901653fabe9eeeaff0e18 /config | |
parent | 834476474672f44d2e2d9fd7a1b913f0981116c3 (diff) |
config: remove unnecessary augment
Signed-off-by: ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>
Diffstat (limited to 'config')
-rw-r--r-- | config/bgp_configs.go | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/config/bgp_configs.go b/config/bgp_configs.go index 713c7821..ad7dd15e 100644 --- a/config/bgp_configs.go +++ b/config/bgp_configs.go @@ -842,6 +842,9 @@ type TransportState struct { // original -> bgp:passive-mode //bgp:passive-mode's original type is boolean PassiveMode bool + // original -> bgp:local-address + //bgp:local-address's original type is union + LocalAddress string // original -> bgp-op:local-port //bgp-op:local-port's original type is inet:port-number LocalPort uint16 @@ -851,9 +854,6 @@ type TransportState struct { // original -> bgp-op:remote-port //bgp-op:remote-port's original type is inet:port-number RemotePort uint16 - // original -> gobgp:local-address - //gobgp:local-address's original type is inet:ip-address - LocalAddress string } //struct for container bgp:config @@ -866,8 +866,8 @@ type TransportConfig struct { // original -> bgp:passive-mode //bgp:passive-mode's original type is boolean PassiveMode bool - // original -> gobgp:local-address - //gobgp:local-address's original type is inet:ip-address + // original -> bgp:local-address + //bgp:local-address's original type is union LocalAddress string } |