ListenerConfig.cs 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. using SuperSocket.SocketBase.Config;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace OCPPServer.Common
  8. {
  9. public class ListenerConfig : IListenerConfig
  10. {
  11. /// <summary>
  12. /// Gets the ip of listener
  13. /// </summary>
  14. private string ip;
  15. /// <summary>
  16. /// Gets the port of listener
  17. /// </summary>
  18. private int port;
  19. /// <summary>
  20. /// Gets the backlog.
  21. /// </summary>
  22. private int backlog;
  23. /// <summary>
  24. /// Gets the security option, None/Default/Tls/Ssl/...
  25. /// </summary>
  26. private string security;
  27. public ListenerConfig(string a, int b, int c, string d)
  28. {
  29. ip = a;
  30. port = b;
  31. backlog = c;
  32. security = d;
  33. }
  34. // Property implementation:
  35. public string Ip
  36. {
  37. get
  38. {
  39. return ip;
  40. }
  41. }
  42. public int Port
  43. {
  44. get
  45. {
  46. return port;
  47. }
  48. }
  49. public int Backlog
  50. {
  51. get
  52. {
  53. return port;
  54. }
  55. }
  56. public string Security
  57. {
  58. get
  59. {
  60. return security;
  61. }
  62. }
  63. }
  64. }