OCPPWebSocketProtocol.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. using SuperSocket.SocketBase;
  2. using SuperSocket.SocketBase.Protocol;
  3. using SuperWebSocket;
  4. using SuperWebSocket.Protocol;
  5. using System;
  6. using System.Collections.Generic;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Threading.Tasks;
  10. namespace ConsoleApplication1
  11. {
  12. class OCPPWebSocketProtocol : WebSocketProtocol
  13. {
  14. /// <summary>
  15. /// Initializes a new instance of the <see cref="WebSocketProtocol"/> class.
  16. /// </summary>
  17. public OCPPWebSocketProtocol()
  18. {
  19. }
  20. /// <summary>
  21. /// Creates the filter.
  22. /// </summary>
  23. /// <param name="appServer">The app server.</param>
  24. /// <param name="appSession">The app session.</param>
  25. /// <param name="remoteEndPoint">The remote end point.</param>
  26. /// <returns></returns>
  27. public IReceiveFilter<IWebSocketFragment> CreateFilter(IAppServer appServer, IAppSession appSession, System.Net.IPEndPoint remoteEndPoint)
  28. {
  29. return new OCPPWebSocketHeaderReceiveFilter((IWebSocketSession)appSession);
  30. }
  31. }
  32. }