lnd.xprv/torsvc/interface.go

14 lines
327 B
Go
Raw Normal View History

package torsvc
import (
"net"
)
// Net is an interface housing a Dial function and several DNS functions.
type Net interface {
Dial(string, string) (net.Conn, error)
LookupHost(string) ([]string, error)
LookupSRV(string, string, string) (string, []*net.SRV, error)
ResolveTCPAddr(string, string) (*net.TCPAddr, error)
}