diff options
author | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2012-07-19 21:07:54 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2012-07-19 21:07:54 +0900 |
commit | bdaafadc3f8e5e1a7e61fa0af6960c584115b94c (patch) | |
tree | 121c3559812755ff49581ecd84556a906ffb6b77 | |
parent | b281cc72bcdf162132b6ba49740ce1abe2e2d100 (diff) |
of1.2: fix OFPPortStatsRequest typo
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
-rw-r--r-- | ryu/ofproto/ofproto_v1_2_parser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ryu/ofproto/ofproto_v1_2_parser.py b/ryu/ofproto/ofproto_v1_2_parser.py index 586c80cd..b359e16a 100644 --- a/ryu/ofproto/ofproto_v1_2_parser.py +++ b/ryu/ofproto/ofproto_v1_2_parser.py @@ -1086,7 +1086,7 @@ class OFPPortStatsRequest(OFPStatsRequest): class OFPPortStats( collections.namedtuple('OFPPortStats', ('port_no', 'rx_packets', 'tx_packets', - 'rx_byptes', 'tx_bytes', + 'rx_bytes', 'tx_bytes', 'rx_dropped', 'tx_dropped', 'rx_errors', 'tx_errors', 'rx_frame_err', 'rx_over_err', |