Browse Source

Remove connected user from connection state on Logoff

Tal Aloni 8 năm trước cách đây
mục cha
commit
584ca8da61
1 tập tin đã thay đổi với 2 bổ sung0 xóa
  1. 2 0
      SMBLibrary/Server/SMBServer.SMB1.cs

+ 2 - 0
SMBLibrary/Server/SMBServer.SMB1.cs

@@ -97,6 +97,8 @@ namespace SMBLibrary.Server
                 }
                 else if (command is LogoffAndXRequest)
                 {
+                    // FIXME: Remove connected trees that the user has connected to
+                    state.RemoveConnectedUser(header.UID);
                     return new LogoffAndXResponse();
                 }
                 else if (state.IsTreeConnected(header.TID))