neoneo-go/pkg/network/payload/version.go

86 lines
2 KiB
Go
Raw Normal View History

2018-01-27 15:00:28 +00:00
package payload
import (
"time"
"github.com/nspcc-dev/neo-go/pkg/config"
"github.com/nspcc-dev/neo-go/pkg/io"
2018-01-27 15:00:28 +00:00
)
// Size of the payload not counting UserAgent encoding (which is at least 1 byte
2019-10-22 14:56:03 +00:00
// for zero-length string).
const minVersionSize = 27
2018-01-27 15:00:28 +00:00
2019-10-22 14:56:03 +00:00
// List of Services offered by the node.
const (
nodePeerService uint64 = 1
// BloomFilerService uint64 = 2 // Not implemented
// PrunedNode uint64 = 3 // Not implemented
// LightNode uint64 = 4 // Not implemented
)
2018-01-27 15:00:28 +00:00
// Version payload.
type Version struct {
// NetMode of the node
Magic config.NetMode
2018-01-27 15:00:28 +00:00
// currently the version of the protocol is 0
Version uint32
// currently 1
Services uint64
// timestamp
Timestamp uint32
// port this server is listening on
Port uint16
// it's used to distinguish the node from public IP
Nonce uint32
2018-01-28 10:12:05 +00:00
// client id
UserAgent []byte
2018-01-27 15:00:28 +00:00
// Height of the block chain
StartHeight uint32
// Whether to receive and forward
Relay bool
}
// NewVersion returns a pointer to a Version payload.
func NewVersion(magic config.NetMode, id uint32, p uint16, ua string, h uint32, r bool) *Version {
2018-01-27 15:00:28 +00:00
return &Version{
Magic: magic,
2018-01-27 15:00:28 +00:00
Version: 0,
Services: nodePeerService,
Timestamp: uint32(time.Now().UTC().Unix()),
2018-01-27 15:00:28 +00:00
Port: p,
2018-01-28 07:03:18 +00:00
Nonce: id,
UserAgent: []byte(ua),
StartHeight: h,
2018-01-27 15:00:28 +00:00
Relay: r,
}
}
// DecodeBinary implements Serializable interface.
func (p *Version) DecodeBinary(br *io.BinReader) {
p.Magic = config.NetMode(br.ReadU32LE())
p.Version = br.ReadU32LE()
p.Services = br.ReadU64LE()
p.Timestamp = br.ReadU32LE()
p.Port = br.ReadU16LE()
p.Nonce = br.ReadU32LE()
p.UserAgent = br.ReadVarBytes()
p.StartHeight = br.ReadU32LE()
p.Relay = br.ReadBool()
2018-01-27 15:00:28 +00:00
}
// EncodeBinary implements Serializable interface.
func (p *Version) EncodeBinary(br *io.BinWriter) {
br.WriteU32LE(uint32(p.Magic))
br.WriteU32LE(p.Version)
br.WriteU64LE(p.Services)
br.WriteU32LE(p.Timestamp)
br.WriteU16LE(p.Port)
br.WriteU32LE(p.Nonce)
br.WriteVarBytes(p.UserAgent)
br.WriteU32LE(p.StartHeight)
br.WriteBool(p.Relay)
2018-01-28 07:03:18 +00:00
}