mirror of
https://github.com/ergochat/ergo.git
synced 2025-12-20 02:00:11 -08:00
configure server with json
This commit is contained in:
parent
55d3d6e946
commit
281558072a
4 changed files with 51 additions and 12 deletions
|
|
@ -19,16 +19,17 @@ type Server struct {
|
|||
clients ClientNameMap
|
||||
}
|
||||
|
||||
func NewServer(name string) *Server {
|
||||
func NewServer(config *Config) *Server {
|
||||
commands := make(chan Command)
|
||||
server := &Server{
|
||||
ctime: time.Now(),
|
||||
name: name,
|
||||
name: config.Name,
|
||||
commands: commands,
|
||||
clients: make(ClientNameMap),
|
||||
channels: make(ChannelNameMap),
|
||||
}
|
||||
go server.receiveCommands(commands)
|
||||
go server.listen(config.Listen)
|
||||
return server
|
||||
}
|
||||
|
||||
|
|
@ -42,7 +43,7 @@ func (server *Server) receiveCommands(commands <-chan Command) {
|
|||
}
|
||||
}
|
||||
|
||||
func (s *Server) Listen(addr string) {
|
||||
func (s *Server) listen(addr string) {
|
||||
listener, err := net.Listen("tcp", addr)
|
||||
if err != nil {
|
||||
log.Fatal("Server.Listen: ", err)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue