mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-13 03:26:38 +00:00
Added quitting reason
This commit is contained in:
parent
7238a77327
commit
bb2433ca1a
1 changed files with 10 additions and 8 deletions
18
peer.go
18
peer.go
|
|
@ -40,17 +40,19 @@ const (
|
||||||
DiscConnDup = 0x05
|
DiscConnDup = 0x05
|
||||||
DiscGenesisErr = 0x06
|
DiscGenesisErr = 0x06
|
||||||
DiscProtoErr = 0x07
|
DiscProtoErr = 0x07
|
||||||
|
DiscQuitting = 0x08
|
||||||
)
|
)
|
||||||
|
|
||||||
var discReasonToString = []string{
|
var discReasonToString = []string{
|
||||||
"Disconnect requested",
|
"requested",
|
||||||
"Disconnect TCP sys error",
|
"TCP sys error",
|
||||||
"Disconnect bad protocol",
|
"bad protocol",
|
||||||
"Disconnect useless peer",
|
"useless peer",
|
||||||
"Disconnect too many peers",
|
"too many peers",
|
||||||
"Disconnect already connected",
|
"already connected",
|
||||||
"Disconnect wrong genesis block",
|
"wrong genesis block",
|
||||||
"Disconnect incompatible network",
|
"incompatible network",
|
||||||
|
"quitting",
|
||||||
}
|
}
|
||||||
|
|
||||||
func (d DiscReason) String() string {
|
func (d DiscReason) String() string {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue