From 89d04da8fc1d666ff61b750f8bb507a8be12b9e3 Mon Sep 17 00:00:00 2001 From: "." <.@.> Date: Sun, 8 May 2016 14:33:21 +1200 Subject: [PATCH] change default port to 6667 (the 6697 is meant for tls) --HG-- branch : nmdc-ircfrontend --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 8c7eccf..0415c3e 100644 --- a/main.go +++ b/main.go @@ -27,7 +27,7 @@ import ( func main() { - ircAddress := flag.String("bind", ":6697", "The address:port to bind to and listen for clients on") + ircAddress := flag.String("bind", ":6667", "The address:port to bind to and listen for clients on") dcAddress := flag.String("upstream", "127.0.0.1:411", "Upstream NMDC server") serverName := flag.String("servername", "nmdc-ircfrontend", "Server name displayed to clients") verbose := flag.Bool("verbose", false, "Display debugging information")