diff options
-rw-r--r-- | ryu/services/protocols/vrrp/event.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ryu/services/protocols/vrrp/event.py b/ryu/services/protocols/vrrp/event.py index a92ac724..686f9ce7 100644 --- a/ryu/services/protocols/vrrp/event.py +++ b/ryu/services/protocols/vrrp/event.py @@ -18,6 +18,7 @@ Events for VRRP """ +from ryu.controller import handler from ryu.controller import event from ryu.lib import dpid as dpid_lib from ryu.lib import mac as mac_lib @@ -267,3 +268,6 @@ class EventVRRPTransmitRequest(event.EventRequestBase): def __init__(self, data): super(EventVRRPTransmitRequest, self).__init__() self.data = data + + +handler.register_service('ryu.services.protocols.vrrp.manager') |