mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
rename packetHandlerMap.Close() to Destroy()
This commit is contained in:
parent
62d3a4166a
commit
db396d8a78
6 changed files with 24 additions and 23 deletions
|
@ -185,8 +185,9 @@ func (h *packetHandlerMap) CloseServer() {
|
|||
wg.Wait()
|
||||
}
|
||||
|
||||
// Close the underlying connection and wait until listen() has returned.
|
||||
func (h *packetHandlerMap) Close() error {
|
||||
// Destroy the underlying connection and wait until listen() has returned.
|
||||
// It does not close active sessions.
|
||||
func (h *packetHandlerMap) Destroy() error {
|
||||
if err := h.conn.Close(); err != nil {
|
||||
return err
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue