From 4c53372815b52b4f1cccecafc262a41902a9cf13 Mon Sep 17 00:00:00 2001 From: Viktor Liu Date: Wed, 27 Aug 2025 09:59:12 +0200 Subject: [PATCH] Add missing flags --- client/server/server.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/client/server/server.go b/client/server/server.go index 517c0d3b5..4b0c59e4d 100644 --- a/client/server/server.go +++ b/client/server/server.go @@ -399,6 +399,10 @@ func (s *Server) SetConfig(callerCtx context.Context, msg *proto.SetConfigReques config.DisableNotifications = msg.DisableNotifications config.LazyConnectionEnabled = msg.LazyConnectionEnabled config.BlockInbound = msg.BlockInbound + config.EnableSSHRoot = msg.EnableSSHRoot + config.EnableSSHSFTP = msg.EnableSSHSFTP + config.EnableSSHLocalPortForwarding = msg.EnableSSHLocalPortForward + config.EnableSSHRemotePortForwarding = msg.EnableSSHRemotePortForward if msg.Mtu != nil { mtu := uint16(*msg.Mtu)