mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-12-25 03:01:55 +00:00
7 lines
136 B
Python
7 lines
136 B
Python
|
from BIRD.Protocol import Protocol, ProtocolList
|
||
|
|
||
|
class RAdvProtocol(Protocol):
|
||
|
match = "RAdv"
|
||
|
|
||
|
ProtocolList.register(RAdvProtocol)
|