source: code/trunk/net_go113.go@ 539

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

Silence net.ErrClosed errors

File size: 181 bytes
RevLine 
[519]1// +build !go1.16
2
3package soju
4
5import (
6 "strings"
7)
8
9func isErrClosed(err error) bool {
10 return err != nil && strings.Contains(err.Error(), "use of closed network connection")
11}
Note: See TracBrowser for help on using the repository browser.