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>
6 lines
115 B
C#
6 lines
115 B
C#
namespace BGPLite.Protocol;
|
|
|
|
public abstract class BgpMessage
|
|
{
|
|
public abstract BgpMessageType Type { get; }
|
|
}
|