neoneo-go/pkg/network/payload/version.go
Roman Khimov 26f11a52d9 config: move NetMode into its own micropackage
It's going to be used a bit more and pulling whole config just for one type is
a bit wrong.
2020-06-18 12:09:57 +03:00

57 lines
1.4 KiB
Go

package payload
import (
"time"
"github.com/nspcc-dev/neo-go/pkg/config/netmode"
"github.com/nspcc-dev/neo-go/pkg/io"
"github.com/nspcc-dev/neo-go/pkg/network/capability"
)
// Version payload.
type Version struct {
// NetMode of the node
Magic netmode.Magic
// currently the version of the protocol is 0
Version uint32
// timestamp
Timestamp uint32
// it's used to distinguish the node from public IP
Nonce uint32
// client id
UserAgent []byte
// List of available network services
Capabilities capability.Capabilities
}
// NewVersion returns a pointer to a Version payload.
func NewVersion(magic netmode.Magic, id uint32, ua string, c []capability.Capability) *Version {
return &Version{
Magic: magic,
Version: 0,
Timestamp: uint32(time.Now().UTC().Unix()),
Nonce: id,
UserAgent: []byte(ua),
Capabilities: c,
}
}
// DecodeBinary implements Serializable interface.
func (p *Version) DecodeBinary(br *io.BinReader) {
p.Magic = netmode.Magic(br.ReadU32LE())
p.Version = br.ReadU32LE()
p.Timestamp = br.ReadU32LE()
p.Nonce = br.ReadU32LE()
p.UserAgent = br.ReadVarBytes()
p.Capabilities.DecodeBinary(br)
}
// EncodeBinary implements Serializable interface.
func (p *Version) EncodeBinary(bw *io.BinWriter) {
bw.WriteU32LE(uint32(p.Magic))
bw.WriteU32LE(p.Version)
bw.WriteU32LE(p.Timestamp)
bw.WriteU32LE(p.Nonce)
bw.WriteVarBytes(p.UserAgent)
p.Capabilities.EncodeBinary(bw)
}