2017-09-14 15:09:48 +00:00
|
|
|
// +build plan9
|
|
|
|
|
2018-01-12 16:30:54 +00:00
|
|
|
package fserrors
|
2017-09-14 15:09:48 +00:00
|
|
|
|
|
|
|
// isClosedConnErrorPlatform reports whether err is an error from use
|
|
|
|
// of a closed network connection using platform specific error codes.
|
|
|
|
func isClosedConnErrorPlatform(err error) bool {
|
|
|
|
return false
|
|
|
|
}
|