using SuperSocket.SocketBase; using SuperSocket.SocketBase.Protocol; using SuperWebSocket; using SuperWebSocket.Protocol; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication1 { class OCPPWebSocketProtocol : WebSocketProtocol { /// /// Initializes a new instance of the class. /// public OCPPWebSocketProtocol() { } /// /// Creates the filter. /// /// The app server. /// The app session. /// The remote end point. /// public IReceiveFilter CreateFilter(IAppServer appServer, IAppSession appSession, System.Net.IPEndPoint remoteEndPoint) { return new OCPPWebSocketHeaderReceiveFilter((IWebSocketSession)appSession); } } }