-
Notifications
You must be signed in to change notification settings - Fork 41
/
node.go
47 lines (41 loc) · 1.55 KB
/
node.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package main
import (
"net"
"time"
"github.com/btcsuite/btcd/wire"
)
// Node struct contains details on one client
type node struct {
na *wire.NetAddress // holds ip address & port details
lastConnect time.Time // last time we sucessfully connected to this client
lastTry time.Time // last time we tried to connect to this client
crawlStart time.Time // time when we started the last crawl
nonstdIP net.IP // if not using the default port then this is the encoded ip containing the actual port
statusStr string // string with last error or OK details
strVersion string // remote client user agent
services wire.ServiceFlag // remote client supported services
connectFails uint32 // number of times we have failed to connect to this client
version int32 // remote client protocol version
lastBlock int32 // remote client last block
status uint32 // rg,cg,wg,ng
rating uint32 // if it reaches 100 then we mark them statusNG
dnsType uint32 // what dns type this client is
crawlActive bool // are we currently crawling this client
}
// dns2str will return the string description of the dns type
func (nd node) dns2str() string {
switch nd.dnsType {
case dnsV4Std:
return "v4 standard port"
case dnsV4Non:
return "v4 non-standard port"
case dnsV6Std:
return "v6 standard port"
case dnsV6Non:
return "v6 non-standard port"
default:
return "Unknown DNS Type"
}
}
/*
*/