summaryrefslogtreecommitdiffhomepage
path: root/gobgpd
diff options
context:
space:
mode:
authorFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2016-07-29 00:32:06 +0900
committerFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2016-07-29 00:32:06 +0900
commit2a552a49b4991fcf765dbbbbd56619256dab96ac (patch)
treeb0b35a545be14cacb6465299ee34aefdae592f83 /gobgpd
parent9e6fede3f4eeb084dadd7dffde9ee9d3cb044254 (diff)
remove unused GrpcRequest and GrpcResponse
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Diffstat (limited to 'gobgpd')
-rw-r--r--gobgpd/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/gobgpd/main.go b/gobgpd/main.go
index d76735d7..48479e60 100644
--- a/gobgpd/main.go
+++ b/gobgpd/main.go
@@ -179,7 +179,7 @@ func main() {
go bgpServer.Serve()
// start grpc Server
- grpcServer := server.NewGrpcServer(bgpServer, opts.GrpcHosts, bgpServer.GrpcReqCh)
+ grpcServer := server.NewGrpcServer(bgpServer, opts.GrpcHosts)
go func() {
if err := grpcServer.Serve(); err != nil {
log.Fatalf("failed to listen grpc port: %s", err)