1234567891011121314151617181920212223242526272829303132333435 |
- 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
- {
- /// <summary>
- /// Initializes a new instance of the <see cref="WebSocketProtocol"/> class.
- /// </summary>
- public OCPPWebSocketProtocol()
- {
- }
- /// <summary>
- /// Creates the filter.
- /// </summary>
- /// <param name="appServer">The app server.</param>
- /// <param name="appSession">The app session.</param>
- /// <param name="remoteEndPoint">The remote end point.</param>
- /// <returns></returns>
- public IReceiveFilter<IWebSocketFragment> CreateFilter(IAppServer appServer, IAppSession appSession, System.Net.IPEndPoint remoteEndPoint)
- {
- return new OCPPWebSocketHeaderReceiveFilter((IWebSocketSession)appSession);
- }
- }
- }
|