add server.Serve() API and improve server tests by listening on port 0

This commit is contained in:
Lucas Clemente 2016-06-03 13:10:04 +02:00
parent c0b73c4beb
commit a47a04d16d
2 changed files with 50 additions and 48 deletions

View file

@ -76,6 +76,10 @@ func (s *Server) ListenAndServe() error {
if err != nil {
return err
}
return s.Serve(conn)
}
func (s *Server) Serve(conn *net.UDPConn) error {
s.connMutex.Lock()
s.conn = conn
s.connMutex.Unlock()