From b57a199eb44dff5af3bdb7866b818544e1d270ee Mon Sep 17 00:00:00 2001 From: Sam Anthony Date: Sat, 14 Mar 2026 16:35:16 -0400 Subject: authfs: implement Rclunk and Ropen --- back/cmd/authfs/sess.go | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'back/cmd/authfs/sess.go') diff --git a/back/cmd/authfs/sess.go b/back/cmd/authfs/sess.go index 3d0cca3..ce45ae4 100644 --- a/back/cmd/authfs/sess.go +++ b/back/cmd/authfs/sess.go @@ -52,3 +52,10 @@ func (s *Session) Extend() bool { } func (s *Session) Qid() (p9.QID, error) { return s.qid, nil } + +func (s *Session) Open(mode p9.Mode) error { + if mode != p9.OREAD { + return ErrPerm + } + return nil +} -- cgit v1.2.3