diff options
author | ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp> | 2015-04-04 23:46:01 +0000 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2015-04-14 08:10:28 +0900 |
commit | 75f835725deb42b00d5f746828f2738d15e3bc4f (patch) | |
tree | 5294cc59377f51896fd75a57cdb776f5e2f8bf54 /table/destination.go | |
parent | 18bbb843d2e025af8e1ffd33b7c9a09d1a19c565 (diff) |
api: use gRPC instead of REST
Signed-off-by: ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>
Diffstat (limited to 'table/destination.go')
-rw-r--r-- | table/destination.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/table/destination.go b/table/destination.go index 72350d8a..aae02822 100644 --- a/table/destination.go +++ b/table/destination.go @@ -111,7 +111,7 @@ func (dd *DestinationDefault) MarshalJSON() ([]byte, error) { return json.Marshal(struct { Prefix string Paths []Path - BestPathIdx int + BestPathIdx int `json:"best_path_idx"` }{ Prefix: prefix.String(), Paths: dd.knownPathList, @@ -929,7 +929,7 @@ func (ipv6d *IPv6Destination) MarshalJSON() ([]byte, error) { return json.Marshal(struct { Prefix string Paths []Path - BestPathIdx int + BestPathIdx int `json:"best_path_idx"` }{ Prefix: prefix.String(), Paths: ipv6d.knownPathList, @@ -985,7 +985,7 @@ func (ipv4vpnd *IPv4VPNDestination) MarshalJSON() ([]byte, error) { return json.Marshal(struct { Prefix string Paths []Path - BestPathIdx int + BestPathIdx int `json:"best_path_idx"` }{ Prefix: prefix.String(), Paths: ipv4vpnd.knownPathList, @@ -1023,7 +1023,7 @@ func (evpnd *EVPNDestination) MarshalJSON() ([]byte, error) { return json.Marshal(struct { Prefix string Paths []Path - BestPathIdx int + BestPathIdx int `json:"best_path_idx"` }{ Prefix: nlri.String(), Paths: evpnd.knownPathList, |