You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

32 lines
544 B

package peer
import (
)
/* Server */
type Server struct {
listener Listener
client *Client
}
func NewServer(l Listener, c *Client) *Server {
s := &Server{
listener: l,
client: c,
}
go s.IncomingConnectionsHandler()
return s
}
// meant to run in a goroutine
func (s *Server) IncomingConnectionHandler() {
for conn := range s.listener.Connections() {
s.client.AddIncomingConnection(conn)
}
}
func (s *Server) Stop() {
s.listener.Stop()
s.client.Stop()
}