1234567891011121314151617181920212223242526272829303132333435363738 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using SuperSocket.SocketBase.Command;
- using SuperWebSocket.Protocol;
- namespace SuperWebSocket.Command
- {
- /// <summary>
- /// The command handle handshake request
- /// </summary>
- /// <typeparam name="TWebSocketSession">The type of the web socket session.</typeparam>
- class HandShake<TWebSocketSession> : CommandBase<TWebSocketSession, IWebSocketFragment>
- where TWebSocketSession : WebSocketSession<TWebSocketSession>, new()
- {
- /// <summary>
- /// Gets the name.
- /// </summary>
- public override string Name
- {
- get
- {
- return OpCode.HandshakeTag;
- }
- }
- /// <summary>
- /// Executes the command.
- /// </summary>
- /// <param name="session">The session.</param>
- /// <param name="requestInfo">The request info.</param>
- public override void ExecuteCommand(TWebSocketSession session, IWebSocketFragment requestInfo)
- {
- session.OnHandshakeSuccess();
- }
- }
- }
|