|
|
@ -19,10 +19,14 @@ import ( |
|
|
|
"log" |
|
|
|
"log" |
|
|
|
) |
|
|
|
) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// refer to Peer struct in p2p/peer.go
|
|
|
|
|
|
|
|
// this is basically a simplified version of Peer
|
|
|
|
|
|
|
|
// for network transportation
|
|
|
|
type nodeInfo struct { |
|
|
|
type nodeInfo struct { |
|
|
|
IP string |
|
|
|
IP string |
|
|
|
Port string |
|
|
|
Port string |
|
|
|
PubKey []byte |
|
|
|
PubKey []byte |
|
|
|
|
|
|
|
ValidatorID int |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
type PingMessageType struct { |
|
|
|
type PingMessageType struct { |
|
|
@ -36,13 +40,13 @@ type PongMessageType struct { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
func (p PingMessageType) String() string { |
|
|
|
func (p PingMessageType) String() string { |
|
|
|
return fmt.Sprintf("%v=>%v:%v/%v", p.Version, p.Node.IP, p.Node.Port, p.Node.PubKey) |
|
|
|
return fmt.Sprintf("ping:%v=>%v:%v:%v/%v", p.Version, p.Node.IP, p.Node.Port, p.Node.ValidatorID, p.Node.PubKey) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
func (p PongMessageType) String() string { |
|
|
|
func (p PongMessageType) String() string { |
|
|
|
str := fmt.Sprintf("%v=># Peers: %v", p.Version, len(p.Peers)) |
|
|
|
str := fmt.Sprintf("pong:%v=>length:%v\n", p.Version, len(p.Peers)) |
|
|
|
for _, p := range p.Peers { |
|
|
|
for _, p := range p.Peers { |
|
|
|
str = fmt.Sprintf("%v\n%v:%v/%v", str, p.IP, p.Port, p.PubKey) |
|
|
|
str = fmt.Sprintf("%v%v:%v:%v/%v\n", str, p.IP, p.Port, p.ValidatorID, p.PubKey) |
|
|
|
} |
|
|
|
} |
|
|
|
return str |
|
|
|
return str |
|
|
|
} |
|
|
|
} |
|
|
@ -54,6 +58,7 @@ func NewPingMessage(peer p2p.Peer) *PingMessageType { |
|
|
|
ping.Version = PROTOCOL_VERSION |
|
|
|
ping.Version = PROTOCOL_VERSION |
|
|
|
ping.Node.IP = peer.Ip |
|
|
|
ping.Node.IP = peer.Ip |
|
|
|
ping.Node.Port = peer.Port |
|
|
|
ping.Node.Port = peer.Port |
|
|
|
|
|
|
|
ping.Node.ValidatorID = peer.ValidatorID |
|
|
|
ping.Node.PubKey, err = peer.PubKey.MarshalBinary() |
|
|
|
ping.Node.PubKey, err = peer.PubKey.MarshalBinary() |
|
|
|
|
|
|
|
|
|
|
|
if err != nil { |
|
|
|
if err != nil { |
|
|
@ -75,6 +80,7 @@ func NewPongMessage(peers []p2p.Peer) *PongMessageType { |
|
|
|
n := nodeInfo{} |
|
|
|
n := nodeInfo{} |
|
|
|
n.IP = p.Ip |
|
|
|
n.IP = p.Ip |
|
|
|
n.Port = p.Port |
|
|
|
n.Port = p.Port |
|
|
|
|
|
|
|
n.ValidatorID = p.ValidatorID |
|
|
|
n.PubKey, err = p.PubKey.MarshalBinary() |
|
|
|
n.PubKey, err = p.PubKey.MarshalBinary() |
|
|
|
if err != nil { |
|
|
|
if err != nil { |
|
|
|
fmt.Printf("Error Marshall PubKey: %v", err) |
|
|
|
fmt.Printf("Error Marshall PubKey: %v", err) |
|
|
|