1
0
Fork 0
forked from External/ergo

async new connections

This commit is contained in:
Jeremy Latt 2014-02-10 17:54:35 -08:00
parent 8d0adf253d
commit a8141a0e1c

View file

@ -105,7 +105,7 @@ func (s *Server) listen(config ListenerConfig) {
if DEBUG_SERVER { if DEBUG_SERVER {
log.Print("Server.Accept: ", conn.RemoteAddr()) log.Print("Server.Accept: ", conn.RemoteAddr())
} }
NewClient(s, conn) go NewClient(s, conn)
} }
} }