mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2025-03-19 12:57:04 +00:00
This choice comes from my own local setup where I use exactly these protocols. Other protocols will be added later.
7 lines
136 B
Python
7 lines
136 B
Python
from BIRD.Protocol import Protocol, ProtocolList
|
|
|
|
class RAdvProtocol(Protocol):
|
|
match = "RAdv"
|
|
|
|
ProtocolList.register(RAdvProtocol)
|