prysm-pulse/beacon-chain/sync/rpc_goodbye.go
Nishant Das 22f4807e0b Implement GoodBye RPC Handler (#3282)
* add handler

* gaz and addition to main rpc method

* remove todo

* preston's comments

* gaz
2019-08-23 12:53:38 -04:00

25 lines
743 B
Go

package sync
import (
"context"
"time"
"github.com/gogo/protobuf/proto"
libp2pcore "github.com/libp2p/go-libp2p-core"
pb "github.com/prysmaticlabs/prysm/proto/beacon/p2p/v1"
)
// goodbyeRPCHandler reads the incoming goodbye rpc message from the peer.
func (r *RegularSync) goodbyeRPCHandler(ctx context.Context, msg proto.Message, stream libp2pcore.Stream) error {
defer stream.Close()
ctx, cancel := context.WithTimeout(ctx, 5*time.Second)
defer cancel()
setRPCStreamDeadlines(stream)
m := msg.(*pb.Goodbye)
log := log.WithField("Reason", m.Reason.String())
log.Infof("Peer %s has sent a goodbye message", stream.Conn().RemotePeer())
// closes all streams with the peer
return r.p2p.Disconnect(stream.Conn().RemotePeer())
}