package server import "io" func IsClientDisconnect(err error) bool { return err == io.ErrUnexpectedEOF || err == io.EOF }