40 lines
808 B
Go
40 lines
808 B
Go
|
// These functions are coming from consul/lib/eof.go
|
||
|
package helper
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
"fmt"
|
||
|
"io"
|
||
|
"net/rpc"
|
||
|
"strings"
|
||
|
|
||
|
"github.com/hashicorp/yamux"
|
||
|
)
|
||
|
|
||
|
var yamuxStreamClosed = yamux.ErrStreamClosed.Error()
|
||
|
var yamuxSessionShutdown = yamux.ErrSessionShutdown.Error()
|
||
|
|
||
|
// IsErrEOF returns true if we get an EOF error from the socket itself, or
|
||
|
// an EOF equivalent error from yamux.
|
||
|
func IsErrEOF(err error) bool {
|
||
|
if err == nil {
|
||
|
return false
|
||
|
}
|
||
|
if errors.Is(err, io.EOF) {
|
||
|
return true
|
||
|
}
|
||
|
|
||
|
errStr := err.Error()
|
||
|
if strings.Contains(errStr, yamuxStreamClosed) ||
|
||
|
strings.Contains(errStr, yamuxSessionShutdown) {
|
||
|
return true
|
||
|
}
|
||
|
|
||
|
var serverError rpc.ServerError
|
||
|
if errors.As(err, &serverError) {
|
||
|
return strings.HasSuffix(err.Error(), fmt.Sprintf(": %s", io.EOF.Error()))
|
||
|
}
|
||
|
|
||
|
return false
|
||
|
}
|