This corrects what appears to be a typo as OFPPortDescPropUnknown is never called but OFPPortPropUnknown, which does not exist, is called.
Signed-off-by: Simon Horman <[email protected]> --- ryu/ofproto/ofproto_v1_4_parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ryu/ofproto/ofproto_v1_4_parser.py b/ryu/ofproto/ofproto_v1_4_parser.py index fbc5f1c..7a44613 100644 --- a/ryu/ofproto/ofproto_v1_4_parser.py +++ b/ryu/ofproto/ofproto_v1_4_parser.py @@ -749,7 +749,7 @@ class OFPMatch(StringifyMixin): return OFPMatch(_ordered_fields=fields) -class OFPPortDescPropUnknown(StringifyMixin): +class OFPPortPropUnknown(StringifyMixin): def __init__(self, type_=None, length=None, buf=None): self.buf = buf -- 1.8.5.2 ------------------------------------------------------------------------------ Managing the Performance of Cloud-Based Applications Take advantage of what the Cloud has to offer - Avoid Common Pitfalls. Read the Whitepaper. http://pubads.g.doubleclick.net/gampad/clk?id=121051231&iu=/4140/ostg.clktrk _______________________________________________ Ryu-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ryu-devel
