You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.4 KiB
64 lines
1.4 KiB
package main |
|
|
|
import ( |
|
"net" |
|
"time" |
|
|
|
"github.com/btcsuite/btcd/wire" |
|
) |
|
|
|
// Twistee struct contains details on one twister client |
|
type twistee struct { |
|
na *wire.NetAddress |
|
lastConnect time.Time |
|
lastTry time.Time |
|
crawlStart time.Time |
|
statusTime time.Time |
|
crawlActive bool |
|
connectFails uint32 |
|
statusStr string // string with last error or OK details |
|
version int32 // remote client protocol version |
|
strVersion string // remote client user agent |
|
services wire.ServiceFlag // remote client supported services |
|
lastBlock int32 |
|
status uint32 // rg,cg,wg,ng |
|
rating uint32 // if it reaches 100 then we ban them |
|
nonstdIP net.IP |
|
dnsType uint32 |
|
} |
|
|
|
// status2str will return the string description of the status |
|
func (tw twistee) status2str() string { |
|
switch tw.status { |
|
case statusRG: |
|
return "statusRG" |
|
case statusCG: |
|
return "statusCG" |
|
case statusWG: |
|
return "statusWG" |
|
case statusNG: |
|
return "statusNG" |
|
default: |
|
return "Unknown" |
|
} |
|
} |
|
|
|
// dns2str will return the string description of the dns type |
|
func (tw twistee) dns2str() string { |
|
switch tw.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" |
|
} |
|
} |
|
|
|
/* |
|
|
|
*/
|
|
|