diff options
author | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2016-07-27 16:27:09 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2016-07-27 16:27:09 +0900 |
commit | 5565e89ffcd46c20af6891bec533ca12e0c08d9c (patch) | |
tree | 1ddfe0a539395adeef3e8537abbb18a223343a53 /server/grpc_server.go | |
parent | 474f7c3a4d992b4597536e36a2f1597db418580f (diff) |
move gRPC-related code for REQ_NEIGHBOR_SHUTDOWN to grpc_server.go
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Diffstat (limited to 'server/grpc_server.go')
-rw-r--r-- | server/grpc_server.go | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/server/grpc_server.go b/server/grpc_server.go index e69b2b0d..73068b55 100644 --- a/server/grpc_server.go +++ b/server/grpc_server.go @@ -471,11 +471,7 @@ func (s *Server) SoftResetNeighbor(ctx context.Context, arg *api.SoftResetNeighb } func (s *Server) ShutdownNeighbor(ctx context.Context, arg *api.ShutdownNeighborRequest) (*api.ShutdownNeighborResponse, error) { - d, err := s.neighbor(REQ_NEIGHBOR_SHUTDOWN, arg.Address, arg) - if err != nil { - return nil, err - } - return d.(*api.ShutdownNeighborResponse), err + return &api.ShutdownNeighborResponse{}, s.bgpServer.ShutdownNeighbor(arg.Address) } func (s *Server) EnableNeighbor(ctx context.Context, arg *api.EnableNeighborRequest) (*api.EnableNeighborResponse, error) { |