summaryrefslogtreecommitdiffhomepage
path: root/tools/grpc
diff options
context:
space:
mode:
authorSatoshi Fujimoto <satoshi.fujimoto7@gmail.com>2017-06-29 14:46:45 +0900
committerSatoshi Fujimoto <satoshi.fujimoto7@gmail.com>2017-06-30 13:30:36 +0900
commite314f126c1c5dc81c0d8ab33a4b450a10674052c (patch)
tree5f1201ea40fa231e0121dda5334fd02135d8bbd9 /tools/grpc
parentba2ac3e45272f2231494195335e706f2374ec877 (diff)
grpc: Update Ruby sample for GoBGP v1.20 gRPC API
Signed-off-by: Satoshi Fujimoto <satoshi.fujimoto7@gmail.com>
Diffstat (limited to 'tools/grpc')
-rw-r--r--tools/grpc/ruby/get_neighbors.rb11
1 files changed, 5 insertions, 6 deletions
diff --git a/tools/grpc/ruby/get_neighbors.rb b/tools/grpc/ruby/get_neighbors.rb
index 36347373..a451f67f 100644
--- a/tools/grpc/ruby/get_neighbors.rb
+++ b/tools/grpc/ruby/get_neighbors.rb
@@ -1,12 +1,11 @@
-require 'gobgp'
-require 'gobgp_services'
+require 'gobgp_pb'
+require 'gobgp_services_pb'
-host = 'localhost'
-host = ARGV[0] if ARGV.length > 0
+host = ARGV[0]
stub = Gobgpapi::GobgpApi::Stub.new("#{host}:50051", :this_channel_is_insecure)
-arg = Gobgpapi::Arguments.new()
-stub.get_neighbors(arg).each do |n|
+arg = Gobgpapi::GetNeighborRequest.new()
+stub.get_neighbor(arg).peers.each do |n|
puts "BGP neighbor is #{n.conf.neighbor_address}, remote AS #{n.conf.peer_as}"
puts "\tBGP version 4, remote route ID #{n.conf.id}"
puts "\tBGP state = #{n.info.bgp_state}, up for #{n.timers.state.uptime}"