mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 13:17:36 +03:00
add server.Serve() API and improve server tests by listening on port 0
This commit is contained in:
parent
c0b73c4beb
commit
a47a04d16d
2 changed files with 50 additions and 48 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue