1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
"""Defines Echo Request message during the handshake."""
# System imports
# Third-party imports
from pyof.foundation.base import GenericMessage
from pyof.foundation.basic_types import BinaryData
from pyof.v0x04.common.header import Header, Type
__all__ = ('EchoRequest',)
# Classes
class EchoRequest(GenericMessage):
"""OpenFlow Reply message.
This message does not contain a body after the OpenFlow Header.
"""
header = Header(message_type=Type.OFPT_ECHO_REQUEST, length=8)
data = BinaryData()
def __init__(self, xid=None, data=b''):
"""Create a EchoRequest with the optional parameters below.
Args:
xid (int): xid to be used on the message header.
data (bytes): arbitrary-length data field.
"""
super().__init__(xid)
self.data = data
|