Signed-off-by: Yuichi Ito <[email protected]>
---
ryu/lib/lacplib.py | 2 +-
ryu/lib/packet/arp.py | 2 +-
ryu/lib/packet/bgp.py | 12 ++++++------
ryu/lib/packet/bpdu.py | 4 ++--
ryu/lib/packet/dhcp.py | 6 +++---
ryu/lib/packet/ethernet.py | 2 +-
ryu/lib/packet/icmp.py | 8 ++++----
ryu/lib/packet/icmpv6.py | 14 +++++++-------
ryu/lib/packet/igmp.py | 2 +-
ryu/lib/packet/ipv4.py | 2 +-
ryu/lib/packet/llc.py | 8 ++++----
ryu/lib/packet/mpls.py | 2 +-
ryu/lib/packet/slow.py | 2 +-
ryu/lib/packet/tcp.py | 2 +-
ryu/lib/packet/udp.py | 2 +-
ryu/lib/packet/vlan.py | 2 +-
16 files changed, 36 insertions(+), 36 deletions(-)
diff --git a/ryu/lib/lacplib.py b/ryu/lib/lacplib.py
index ae7cc3d..9b1600f 100644
--- a/ryu/lib/lacplib.py
+++ b/ryu/lib/lacplib.py
@@ -73,7 +73,7 @@ class LacpLib(app_manager.RyuApp):
def add(self, dpid, ports):
"""add a setting of a bonding i/f.
- 'add' method takes the correspondig args in this order.
+ 'add' method takes the corresponding args in this order.
========= =====================================================
Attribute Description
diff --git a/ryu/lib/packet/arp.py b/ryu/lib/packet/arp.py
index 191ce9a..1ede650 100644
--- a/ryu/lib/packet/arp.py
+++ b/ryu/lib/packet/arp.py
@@ -35,7 +35,7 @@ class arp(packet_base.PacketBase):
Most of them are same to the on-wire counterparts but in host byte order.
IPv4 addresses are represented as a string like '192.0.2.1'.
MAC addresses are represented as a string like '08:60:6e:7f:74:e7'.
- __init__ takes the correspondig args in this order.
+ __init__ takes the corresponding args in this order.
============== ==================== =====================
Attribute Description Example
diff --git a/ryu/lib/packet/bgp.py b/ryu/lib/packet/bgp.py
index 226aeb2..d4780f6 100644
--- a/ryu/lib/packet/bgp.py
+++ b/ryu/lib/packet/bgp.py
@@ -723,7 +723,7 @@ class BGPMessage(packet_base.PacketBase, _TypeDisp):
An instance has the following attributes at least.
Most of them are same to the on-wire counterparts but in host byte
order.
- __init__ takes the correspondig args in this order.
+ __init__ takes the corresponding args in this order.
========================== ===============================================
Attribute Description
@@ -785,7 +785,7 @@ class BGPOpen(BGPMessage):
An instance has the following attributes at least.
Most of them are same to the on-wire counterparts but in host byte
order.
- __init__ takes the correspondig args in this order.
+ __init__ takes the corresponding args in this order.
========================== ===============================================
Attribute Description
@@ -867,7 +867,7 @@ class BGPUpdate(BGPMessage):
An instance has the following attributes at least.
Most of them are same to the on-wire counterparts but in host byte
order.
- __init__ takes the correspondig args in this order.
+ __init__ takes the corresponding args in this order.
========================== ===============================================
Attribute Description
@@ -971,7 +971,7 @@ class BGPKeepAlive(BGPMessage):
An instance has the following attributes at least.
Most of them are same to the on-wire counterparts but in host byte
order.
- __init__ takes the correspondig args in this order.
+ __init__ takes the corresponding args in this order.
========================== ===============================================
Attribute Description
@@ -1003,7 +1003,7 @@ class BGPNotification(BGPMessage):
An instance has the following attributes at least.
Most of them are same to the on-wire counterparts but in host byte
order.
- __init__ takes the correspondig args in this order.
+ __init__ takes the corresponding args in this order.
========================== ===============================================
Attribute Description
@@ -1057,7 +1057,7 @@ class BGPRouteRefresh(BGPMessage):
An instance has the following attributes at least.
Most of them are same to the on-wire counterparts but in host byte
order.
- __init__ takes the correspondig args in this order.
+ __init__ takes the corresponding args in this order.
========================== ===============================================
Attribute Description
diff --git a/ryu/lib/packet/bpdu.py b/ryu/lib/packet/bpdu.py
index 91aefa2..8756518 100644
--- a/ryu/lib/packet/bpdu.py
+++ b/ryu/lib/packet/bpdu.py
@@ -216,7 +216,7 @@ class ConfigurationBPDUs(bpdu):
An instance has the following attributes at least.
Most of them are same to the on-wire counterparts but in host byte
order.
- __init__ takes the correspondig args in this order.
+ __init__ takes the corresponding args in this order.
========================== ===============================================
Attribute Description
@@ -404,7 +404,7 @@ class RstBPDUs(ConfigurationBPDUs):
An instance has the following attributes at least.
Most of them are same to the on-wire counterparts but in host byte
order.
- __init__ takes the correspondig args in this order.
+ __init__ takes the corresponding args in this order.
========================== ===========================================
Attribute Description
diff --git a/ryu/lib/packet/dhcp.py b/ryu/lib/packet/dhcp.py
index 3b2b97b..6e0cab1 100644
--- a/ryu/lib/packet/dhcp.py
+++ b/ryu/lib/packet/dhcp.py
@@ -96,7 +96,7 @@ class dhcp(packet_base.PacketBase):
An instance has the following attributes at least.
Most of them are same to the on-wire counterparts but in host byte order.
- __init__ takes the correspondig args in this order.
+ __init__ takes the corresponding args in this order.
.. tabularcolumns:: |l|L|
@@ -210,7 +210,7 @@ class options(stringify.StringifyMixin):
An instance has the following attributes at least.
Most of them are same to the on-wire counterparts but in host byte order.
- __init__ takes the correspondig args in this order.
+ __init__ takes the corresponding args in this order.
.. tabularcolumns:: |l|L|
@@ -273,7 +273,7 @@ class option(stringify.StringifyMixin):
An instance has the following attributes at least.
Most of them are same to the on-wire counterparts but in host byte order.
- __init__ takes the correspondig args in this order.
+ __init__ takes the corresponding args in this order.
============== ====================
Attribute Description
diff --git a/ryu/lib/packet/ethernet.py b/ryu/lib/packet/ethernet.py
index 2b8c932..349a352 100644
--- a/ryu/lib/packet/ethernet.py
+++ b/ryu/lib/packet/ethernet.py
@@ -26,7 +26,7 @@ class ethernet(packet_base.PacketBase):
An instance has the following attributes at least.
MAC addresses are represented as a string like '08:60:6e:7f:74:e7'.
- __init__ takes the correspondig args in this order.
+ __init__ takes the corresponding args in this order.
============== ==================== =====================
Attribute Description Example
diff --git a/ryu/lib/packet/icmp.py b/ryu/lib/packet/icmp.py
index a07a5c7..e383e21 100644
--- a/ryu/lib/packet/icmp.py
+++ b/ryu/lib/packet/icmp.py
@@ -38,7 +38,7 @@ class icmp(packet_base.PacketBase):
An instance has the following attributes at least.
Most of them are same to the on-wire counterparts but in host byte order.
- __init__ takes the correspondig args in this order.
+ __init__ takes the corresponding args in this order.
.. tabularcolumns:: |l|L|
@@ -125,7 +125,7 @@ class echo(stringify.StringifyMixin):
An instance has the following attributes at least.
Most of them are same to the on-wire counterparts but in host byte order.
- __init__ takes the correspondig args in this order.
+ __init__ takes the corresponding args in this order.
.. tabularcolumns:: |l|L|
@@ -177,7 +177,7 @@ class dest_unreach(stringify.StringifyMixin):
An instance has the following attributes at least.
Most of them are same to the on-wire counterparts but in host byte order.
- __init__ takes the correspondig args in this order.
+ __init__ takes the corresponding args in this order.
[RFC1191] reserves bits for the "Next-Hop MTU" field.
[RFC4884] introduced 8-bit data length attribute.
@@ -237,7 +237,7 @@ class TimeExceeded(stringify.StringifyMixin):
An instance has the following attributes at least.
Most of them are same to the on-wire counterparts but in host byte order.
- __init__ takes the correspondig args in this order.
+ __init__ takes the corresponding args in this order.
[RFC4884] introduced 8-bit data length attribute.
diff --git a/ryu/lib/packet/icmpv6.py b/ryu/lib/packet/icmpv6.py
index 256f53d..4da7fa2 100644
--- a/ryu/lib/packet/icmpv6.py
+++ b/ryu/lib/packet/icmpv6.py
@@ -62,7 +62,7 @@ class icmpv6(packet_base.PacketBase):
An instance has the following attributes at least.
Most of them are same to the on-wire counterparts but in host byte order.
- __init__ takes the correspondig args in this order.
+ __init__ takes the corresponding args in this order.
.. tabularcolumns:: |l|p{35em}|
@@ -140,7 +140,7 @@ class nd_neighbor(stringify.StringifyMixin):
An instance has the following attributes at least.
Most of them are same to the on-wire counterparts but in host byte order.
- __init__ takes the correspondig args in this order.
+ __init__ takes the corresponding args in this order.
.. tabularcolumns:: |l|p{35em}|
@@ -226,7 +226,7 @@ class nd_router_solicit(stringify.StringifyMixin):
An instance has the following attributes at least.
Most of them are same to the on-wire counterparts but in host byte order.
- __init__ takes the correspondig args in this order.
+ __init__ takes the corresponding args in this order.
.. tabularcolumns:: |l|p{35em}|
@@ -304,7 +304,7 @@ class nd_router_advert(stringify.StringifyMixin):
An instance has the following attributes at least.
Most of them are same to the on-wire counterparts but in host byte order.
- __init__ takes the correspondig args in this order.
+ __init__ takes the corresponding args in this order.
.. tabularcolumns:: |l|p{35em}|
@@ -414,7 +414,7 @@ class nd_option_la(stringify.StringifyMixin):
An instance has the following attributes at least.
Most of them are same to the on-wire counterparts but in host byte order.
- __init__ takes the correspondig args in this order.
+ __init__ takes the corresponding args in this order.
.. tabularcolumns:: |l|p{35em}|
@@ -469,7 +469,7 @@ class nd_option_pi(stringify.StringifyMixin):
An instance has the following attributes at least.
Most of them are same to the on-wire counterparts but in host byte order.
- __init__ takes the correspondig args in this order.
+ __init__ takes the corresponding args in this order.
.. tabularcolumns:: |l|p{35em}|
@@ -527,7 +527,7 @@ class echo(stringify.StringifyMixin):
An instance has the following attributes at least.
Most of them are same to the on-wire counterparts but in host byte order.
- __init__ takes the correspondig args in this order.
+ __init__ takes the corresponding args in this order.
============== ====================
Attribute Description
diff --git a/ryu/lib/packet/igmp.py b/ryu/lib/packet/igmp.py
index a42300f..2b9485b 100644
--- a/ryu/lib/packet/igmp.py
+++ b/ryu/lib/packet/igmp.py
@@ -71,7 +71,7 @@ class igmp(packet_base.PacketBase):
An instance has the following attributes at least.
Most of them are same to the on-wire counterparts but in host byte
order.
- __init__ takes the correspondig args in this order.
+ __init__ takes the corresponding args in this order.
=============== ====================================================
Attribute Description
diff --git a/ryu/lib/packet/ipv4.py b/ryu/lib/packet/ipv4.py
index 73ad4f3..2247bdb 100644
--- a/ryu/lib/packet/ipv4.py
+++ b/ryu/lib/packet/ipv4.py
@@ -41,7 +41,7 @@ class ipv4(packet_base.PacketBase):
An instance has the following attributes at least.
Most of them are same to the on-wire counterparts but in host byte order.
IPv4 addresses are represented as a string like '192.0.2.1'.
- __init__ takes the correspondig args in this order.
+ __init__ takes the corresponding args in this order.
============== ======================================== ==================
Attribute Description Example
diff --git a/ryu/lib/packet/llc.py b/ryu/lib/packet/llc.py
index 7601dce..12d557d 100644
--- a/ryu/lib/packet/llc.py
+++ b/ryu/lib/packet/llc.py
@@ -102,7 +102,7 @@ class llc(packet_base.PacketBase):
An instance has the following attributes at least.
Most of them are same to the on-wire counterparts but in host byte
order.
- __init__ takes the correspondig args in this order.
+ __init__ takes the corresponding args in this order.
.. tabularcolumns:: |l|L|
@@ -173,7 +173,7 @@ class ControlFormatI(stringify.StringifyMixin):
An instance has the following attributes at least.
Most of them are same to the on-wire counterparts but in host byte
order.
- __init__ takes the correspondig args in this order.
+ __init__ takes the corresponding args in this order.
======================== ===============================
Attribute Description
@@ -222,7 +222,7 @@ class ControlFormatS(stringify.StringifyMixin):
An instance has the following attributes at least.
Most of them are same to the on-wire counterparts but in host byte
order.
- __init__ takes the correspondig args in this order.
+ __init__ takes the corresponding args in this order.
======================== ===============================
Attribute Description
@@ -274,7 +274,7 @@ class ControlFormatU(stringify.StringifyMixin):
An instance has the following attributes at least.
Most of them are same to the on-wire counterparts but in host byte
order.
- __init__ takes the correspondig args in this order.
+ __init__ takes the corresponding args in this order.
======================== ===============================
Attribute Description
diff --git a/ryu/lib/packet/mpls.py b/ryu/lib/packet/mpls.py
index 1a69157..7a56766 100644
--- a/ryu/lib/packet/mpls.py
+++ b/ryu/lib/packet/mpls.py
@@ -29,7 +29,7 @@ class mpls(packet_base.PacketBase):
An instance has the following attributes at least.
Most of them are same to the on-wire counterparts but in host byte order.
- __init__ takes the correspondig args in this order.
+ __init__ takes the corresponding args in this order.
============== ====================
Attribute Description
diff --git a/ryu/lib/packet/slow.py b/ryu/lib/packet/slow.py
index 5ace157..61a91c0 100644
--- a/ryu/lib/packet/slow.py
+++ b/ryu/lib/packet/slow.py
@@ -189,7 +189,7 @@ class lacp(packet_base.PacketBase):
An instance has the following attributes at least.
Most of them are same to the on-wire counterparts but in host byte
order.
- __init__ takes the correspondig args in this order.
+ __init__ takes the corresponding args in this order.
.. tabularcolumns:: |l|L|
diff --git a/ryu/lib/packet/tcp.py b/ryu/lib/packet/tcp.py
index e9982b4..e6932ae 100644
--- a/ryu/lib/packet/tcp.py
+++ b/ryu/lib/packet/tcp.py
@@ -24,7 +24,7 @@ class tcp(packet_base.PacketBase):
An instance has the following attributes at least.
Most of them are same to the on-wire counterparts but in host byte order.
- __init__ takes the correspondig args in this order.
+ __init__ takes the corresponding args in this order.
============== ====================
Attribute Description
diff --git a/ryu/lib/packet/udp.py b/ryu/lib/packet/udp.py
index 83cd51a..e3bf5e5 100644
--- a/ryu/lib/packet/udp.py
+++ b/ryu/lib/packet/udp.py
@@ -24,7 +24,7 @@ class udp(packet_base.PacketBase):
An instance has the following attributes at least.
Most of them are same to the on-wire counterparts but in host byte order.
- __init__ takes the correspondig args in this order.
+ __init__ takes the corresponding args in this order.
============== ====================
Attribute Description
diff --git a/ryu/lib/packet/vlan.py b/ryu/lib/packet/vlan.py
index e672272..8930197 100644
--- a/ryu/lib/packet/vlan.py
+++ b/ryu/lib/packet/vlan.py
@@ -29,7 +29,7 @@ class vlan(packet_base.PacketBase):
An instance has the following attributes at least.
Most of them are same to the on-wire counterparts but in host byte order.
- __init__ takes the correspondig args in this order.
+ __init__ takes the corresponding args in this order.
============== ====================
Attribute Description
--
1.7.10.4
------------------------------------------------------------------------------
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from
the latest Intel processors and coprocessors. See abstracts and register >
http://pubads.g.doubleclick.net/gampad/clk?id=60135991&iu=/4140/ostg.clktrk
_______________________________________________
Ryu-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/ryu-devel