status-go/vendor/github.com/anacrolix/dht/v2/traversal/stats.go

9 lines
278 B
Go
Raw Normal View History

2022-03-10 09:44:48 +00:00
package traversal
type Stats struct {
// Count of (probably) distinct addresses we've sent traversal queries to. Accessed with atomic.
NumAddrsTried uint32
// Number of responses we received to queries related to this traversal. Accessed with atomic.
NumResponses uint32
}