nmdc-ircfrontend/main.go
. 3d582d2004 add AGPLv3 preamble to all source file headers
--HG--
branch : nmdc-ircfrontend
2016-05-05 19:20:36 +12:00

61 lines
1.6 KiB
Go

package main
/*
Copyright (C) 2016 The `nmdc-ircfrontend' author(s)
Copyright (C) 2013 Harry Jeffery
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import (
"flag"
"libnmdc"
"log"
"net"
)
var (
ircAddress = flag.String("bind", ":6697", "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")
)
func main() {
flag.Parse()
log.Printf("Listening on '%s'...", *ircAddress)
listener, err := net.Listen("tcp", *ircAddress)
if err != nil {
log.Printf(err.Error())
return
}
for {
conn, err := listener.Accept()
if err != nil {
log.Printf("Error accepting connection (%s)", err.Error())
continue
}
// Spin up an IRC server for the new user.
// The upstream connection doesn't get launched until we hear a nick
// from the irc client
server := NewServer(*serverName, libnmdc.HubAddress(*dcAddress), conn)
go server.RunWorker()
}
}