source: code/trunk/net_go116.go@ 548

Last change on this file since 548 was 519, checked in by contact, 4 years ago

Silence net.ErrClosed errors

File size: 136 bytes
RevLine 
[519]1// +build go1.16
2
3package soju
4
5import (
6 "errors"
7 "net"
8)
9
10func isErrClosed(err error) bool {
11 return errors.Is(err, net.ErrClosed)
12}
Note: See TracBrowser for help on using the repository browser.