rename packetHandlerMap.Close() to Destroy()

This commit is contained in:
Marten Seemann 2020-01-22 17:59:22 +07:00
parent 62d3a4166a
commit db396d8a78
6 changed files with 24 additions and 23 deletions

View file

@ -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
}