aboutsummaryrefslogtreecommitdiffstats
path: root/p2p/peer.go
diff options
context:
space:
mode:
authorFelix Lange <fjl@twurst.com>2015-05-14 23:41:43 +0800
committerFelix Lange <fjl@twurst.com>2015-05-25 07:17:14 +0800
commitdbdc5fd4b33ad98ebde72e7d934cebab1408f057 (patch)
tree79d6b8827555b0220a89456d3132f40ed0f9b291 /p2p/peer.go
parent2f249fea448a10ae0986a140f5a52d8a310e57fe (diff)
downloaddexon-dbdc5fd4b33ad98ebde72e7d934cebab1408f057.tar
dexon-dbdc5fd4b33ad98ebde72e7d934cebab1408f057.tar.gz
dexon-dbdc5fd4b33ad98ebde72e7d934cebab1408f057.tar.bz2
dexon-dbdc5fd4b33ad98ebde72e7d934cebab1408f057.tar.lz
dexon-dbdc5fd4b33ad98ebde72e7d934cebab1408f057.tar.xz
dexon-dbdc5fd4b33ad98ebde72e7d934cebab1408f057.tar.zst
dexon-dbdc5fd4b33ad98ebde72e7d934cebab1408f057.zip
p2p: delete Server.Broadcast
Diffstat (limited to 'p2p/peer.go')
-rw-r--r--p2p/peer.go14
1 files changed, 0 insertions, 14 deletions
diff --git a/p2p/peer.go b/p2p/peer.go
index c7ec08887..562fbc1b4 100644
--- a/p2p/peer.go
+++ b/p2p/peer.go
@@ -273,20 +273,6 @@ func (p *Peer) getProto(code uint64) (*protoRW, error) {
return nil, newPeerError(errInvalidMsgCode, "%d", code)
}
-// writeProtoMsg sends the given message on behalf of the given named protocol.
-// this exists because of Server.Broadcast.
-func (p *Peer) writeProtoMsg(protoName string, msg Msg) error {
- proto, ok := p.running[protoName]
- if !ok {
- return fmt.Errorf("protocol %s not handled by peer", protoName)
- }
- if msg.Code >= proto.Length {
- return newPeerError(errInvalidMsgCode, "code %x is out of range for protocol %q", msg.Code, protoName)
- }
- msg.Code += proto.offset
- return p.rw.WriteMsg(msg)
-}
-
type protoRW struct {
Protocol
in chan Msg