2
0
mirror of synced 2025-02-22 21:58:24 +00:00
torrent/listen.go
2021-09-14 21:54:37 +10:00

12 lines
179 B
Go

package torrent
import "strings"
func LoopbackListenHost(network string) string {
if strings.IndexByte(network, '4') != -1 {
return "127.0.0.1"
} else {
return "::1"
}
}