aboutsummaryrefslogtreecommitdiff
path: root/dht/peer.go
blob: a8013319e7af077ecfa05acf614bfedefbe76ecc (plain)
1
2
3
4
5
6
7
8
9
package dht

import "net"

// Peer on DHT network
type Peer struct {
	Address net.UDPAddr
	ID      Infohash
}