*: move default tracker port to 6969

This commit is contained in:
Leo Balduf
2018-02-13 10:07:01 +01:00
parent a8bc51ba1d
commit 0c077f0a8c
3 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -15,8 +15,8 @@ import (
)
func init() {
flag.StringVar(&httpTrackerURL, "http", "http://localhost:6881/announce", "the address of the HTTP tracker")
flag.StringVar(&udpTrackerURL, "udp", "udp://localhost:6881", "the address of the UDP tracker")
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.DurationVar(&delay, "delay", 1*time.Second, "the delay between announces")
}