func (c *ClientConn) unexpectedErr(fc *plan9.Fcall, err error) *plan9.Fcall { fc.Type = plan9.Rerror fc.Ename = err.Error() return fc }
func (c *ClientConn) fidUsedErr(fc *plan9.Fcall) *plan9.Fcall { fc.Type = plan9.Rerror fc.Ename = "fid in use" return fc }
func (c *ClientConn) invalidFidErr(fc *plan9.Fcall) *plan9.Fcall { fc.Type = plan9.Rerror fc.Ename = "fid not found" return fc }
func (c *ClientConn) fileNotFoundErr(fc *plan9.Fcall) *plan9.Fcall { fc.Type = plan9.Rerror fc.Ename = "file not found" return fc }
func noauth(fc *plan9.Fcall) *plan9.Fcall { fc.Type = plan9.Rerror fc.Ename = "no auth requried" return fc }