ConnectionState.cs 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /* Copyright (C) 2014-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 System.Net;
  10. using System.Net.Sockets;
  11. using SMBLibrary.NetBios;
  12. using Utilities;
  13. namespace SMBLibrary.Server
  14. {
  15. public delegate void LogDelegate(Severity severity, string message);
  16. public enum SMBDialect
  17. {
  18. NotSet,
  19. NTLM012, // NT LM 0.12
  20. }
  21. public class ConnectionState
  22. {
  23. public Socket ClientSocket;
  24. public IPEndPoint ClientEndPoint;
  25. public NBTConnectionReceiveBuffer ReceiveBuffer;
  26. protected LogDelegate LogToServerHandler;
  27. public SMBDialect ServerDialect;
  28. public ConnectionState(LogDelegate logToServerHandler)
  29. {
  30. ReceiveBuffer = new NBTConnectionReceiveBuffer();
  31. LogToServerHandler = logToServerHandler;
  32. ServerDialect = SMBDialect.NotSet;
  33. }
  34. public ConnectionState(ConnectionState state)
  35. {
  36. ClientSocket = state.ClientSocket;
  37. ClientEndPoint = state.ClientEndPoint;
  38. ReceiveBuffer = state.ReceiveBuffer;
  39. LogToServerHandler = state.LogToServerHandler;
  40. ServerDialect = state.ServerDialect;
  41. }
  42. public void LogToServer(Severity severity, string message)
  43. {
  44. message = String.Format("[{0}] {1}", ConnectionIdentifier, message);
  45. if (LogToServerHandler != null)
  46. {
  47. LogToServerHandler(severity, message);
  48. }
  49. }
  50. public void LogToServer(Severity severity, string message, params object[] args)
  51. {
  52. LogToServer(severity, String.Format(message, args));
  53. }
  54. public string ConnectionIdentifier
  55. {
  56. get
  57. {
  58. if (ClientEndPoint != null)
  59. {
  60. return ClientEndPoint.Address + ":" + ClientEndPoint.Port;
  61. }
  62. return String.Empty;
  63. }
  64. }
  65. }
  66. }