change default port to 6667 (the 6697 is meant for tls)

--HG--
branch : nmdc-ircfrontend
This commit is contained in:
. 2016-05-08 14:33:21 +12:00
parent c75a6a568d
commit 89d04da8fc

View File

@ -27,7 +27,7 @@ import (
func main() { 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") dcAddress := flag.String("upstream", "127.0.0.1:411", "Upstream NMDC server")
serverName := flag.String("servername", "nmdc-ircfrontend", "Server name displayed to clients") serverName := flag.String("servername", "nmdc-ircfrontend", "Server name displayed to clients")
verbose := flag.Bool("verbose", false, "Display debugging information") verbose := flag.Bool("verbose", false, "Display debugging information")