diff options
Diffstat (limited to 'ryu/lib/packet/icmpv6.py')
-rw-r--r-- | ryu/lib/packet/icmpv6.py | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/ryu/lib/packet/icmpv6.py b/ryu/lib/packet/icmpv6.py index 92a9f535..ac1d5349 100644 --- a/ryu/lib/packet/icmpv6.py +++ b/ryu/lib/packet/icmpv6.py @@ -64,14 +64,17 @@ class icmpv6(packet_base.PacketBase): Most of them are same to the on-wire counterparts but in host byte order. __init__ takes the correspondig args in this order. + .. tabularcolumns:: |l|p{35em}| + ============== ==================== Attribute Description ============== ==================== type\_ Type code Code - csum CheckSum \ + csum CheckSum (0 means automatically-calculate when encoding) - data Payload. \ + data Payload. + ryu.lib.packet.icmpv6.echo object, or \ ryu.lib.packet.icmpv6.nd_neighbor object, or a bytearray. ============== ==================== @@ -136,6 +139,8 @@ class nd_neighbor(stringify.StringifyMixin): Most of them are same to the on-wire counterparts but in host byte order. __init__ takes the correspondig args in this order. + .. tabularcolumns:: |l|p{35em}| + ============== ==================== Attribute Description ============== ==================== @@ -221,6 +226,8 @@ class nd_option_la(stringify.StringifyMixin): Most of them are same to the on-wire counterparts but in host byte order. __init__ takes the correspondig args in this order. + .. tabularcolumns:: |l|p{35em}| + ============== ==================== Attribute Description ============== ==================== |