torrent/listen.go

12 lines
179 B
Go
Raw Normal View History

package torrent
2018-04-12 05:21:31 +00:00
import "strings"
func LoopbackListenHost(network string) string {
2021-09-14 11:54:37 +00:00
if strings.IndexByte(network, '4') != -1 {
2018-04-12 05:21:31 +00:00
return "127.0.0.1"
} else {
return "::1"
}
}