1234567891011121314151617181920212223242526272829303132333435 |
- using System;
- using System.Collections.Specialized;
- using System.Configuration.Provider;
- using System.Net;
- using SuperSocket.SocketBase.Config;
- namespace SuperSocket.SocketBase
- {
-
-
-
- public interface IConnectionFilter
- {
-
-
-
-
-
-
- bool Initialize(string name, IAppServer appServer);
-
-
-
- string Name { get; }
-
-
-
-
-
- bool AllowConnect(IPEndPoint remoteAddress);
- }
- }
|