chihaya-e2e: force IPv4 announces for now

This commit is contained in:
Leo Balduf 2018-02-17 13:40:33 +01:00
parent ee7b4f944a
commit 0954c17692

View file

@ -15,8 +15,8 @@ import (
)
func init() {
flag.StringVar(&httpTrackerURL, "http", "http://localhost:6969/announce", "the address of the HTTP tracker")
flag.StringVar(&udpTrackerURL, "udp", "udp://localhost:6969", "the address of the UDP tracker")
flag.StringVar(&httpTrackerURL, "http", "http://127.0.0.1:6969/announce", "the address of the HTTP tracker")
flag.StringVar(&udpTrackerURL, "udp", "udp://127.0.0.1:6969", "the address of the UDP tracker")
flag.DurationVar(&delay, "delay", 1*time.Second, "the delay between announces")
}