1234567891011121314151617181920212223242526272829303132333435 |
- using System;
- using System.Collections.Specialized;
- using System.Configuration.Provider;
- using System.Net;
- using SuperSocket.SocketBase.Config;
- namespace SuperSocket.SocketBase
- {
- /// <summary>
- /// The basic interface of connection filter
- /// </summary>
- public interface IConnectionFilter
- {
- /// <summary>
- /// Initializes the connection filter
- /// </summary>
- /// <param name="name">The name.</param>
- /// <param name="appServer">The app server.</param>
- /// <returns></returns>
- bool Initialize(string name, IAppServer appServer);
- /// <summary>
- /// Gets the name of the filter.
- /// </summary>
- string Name { get; }
- /// <summary>
- /// Whether allows the connect according the remote endpoint
- /// </summary>
- /// <param name="remoteAddress">The remote address.</param>
- /// <returns></returns>
- bool AllowConnect(IPEndPoint remoteAddress);
- }
- }
|