ConnectionManager.cs 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /* Copyright (C) 2017 Tal Aloni <tal.aloni.il@gmail.com>. All rights reserved.
  2. *
  3. * You can redistribute this program and/or modify it under the terms of
  4. * the GNU Lesser Public License as published by the Free Software Foundation,
  5. * either version 3 of the License, or (at your option) any later version.
  6. */
  7. using System;
  8. using System.Collections.Generic;
  9. using Utilities;
  10. namespace SMBLibrary.Server
  11. {
  12. internal class ConnectionManager
  13. {
  14. private List<ConnectionState> m_activeConnections = new List<ConnectionState>();
  15. public void AddConnection(ConnectionState connection)
  16. {
  17. lock (m_activeConnections)
  18. {
  19. m_activeConnections.Add(connection);
  20. }
  21. }
  22. public bool RemoveConnection(ConnectionState connection)
  23. {
  24. lock (m_activeConnections)
  25. {
  26. int connectionIndex = m_activeConnections.IndexOf(connection);
  27. if (connectionIndex >= 0)
  28. {
  29. m_activeConnections.RemoveAt(connectionIndex);
  30. return true;
  31. }
  32. return false;
  33. }
  34. }
  35. public void ReleaseConnection(ConnectionState connection)
  36. {
  37. SocketUtils.ReleaseSocket(connection.ClientSocket);
  38. RemoveConnection(connection);
  39. }
  40. }
  41. }