Lightweight BGP route server with TCP session management, route table, community-based filtering, management HTTP API, and SQLite peer store. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
9 lines
202 B
C#
9 lines
202 B
C#
using BGPLite.Configuration;
|
|
|
|
namespace BGPLite.Routing;
|
|
|
|
public interface IRouteFilter
|
|
{
|
|
bool AcceptIncoming(Route route, PeerConfig peer);
|
|
bool AcceptOutgoing(Route route, PeerConfig peer);
|
|
}
|