1
0
mirror of https://github.com/fumiama/RVC-Models-Downloader.git synced 2024-09-29 22:36:25 +09:00
RVC-Models-Downloader/ipv6.go

27 lines
534 B
Go
Raw Normal View History

2024-04-18 01:52:23 +09:00
package main
// https://github.com/fumiama/comandy
import (
"context"
"net/http"
"time"
"github.com/RomiChan/syncx"
)
var canUseIPv6 = syncx.Lazy[bool]{Init: func() bool {
ctx, cancel := context.WithTimeout(context.Background(), 4*time.Second)
defer cancel()
req, err := http.NewRequestWithContext(ctx, "GET", "http://v6.ipv6-test.com/json/widgetdata.php?callback=?", nil)
if err != nil {
return false
}
resp, err := http.DefaultClient.Do(req)
if err != nil {
return false
}
_ = resp.Body.Close()
return true
}}