12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Security.Authentication;
- using SuperSocket.Common;
- namespace SuperSocket.SocketBase
- {
-
-
-
-
- public interface ISocketServer
- {
-
-
-
-
- bool Start();
-
-
-
-
-
- void ResetSessionSecurity(IAppSession session, SslProtocols security);
-
-
-
-
-
-
- bool IsRunning { get; }
-
-
-
-
-
-
- IPoolInfo SendingQueuePool { get; }
-
-
-
- void Stop();
- }
- }
|