diff options
-rw-r--r-- | ryu/ofproto/nx_match.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ryu/ofproto/nx_match.py b/ryu/ofproto/nx_match.py index a779338d..be65eb59 100644 --- a/ryu/ofproto/nx_match.py +++ b/ryu/ofproto/nx_match.py @@ -613,6 +613,7 @@ class MFIPSrc(MFField): def __init__(self, header, value, mask=None): super(MFIPSrc, self).__init__(header, MFIPSrc.pack_str) self.value = value + self.mask = mask @classmethod def make(cls, header): @@ -632,6 +633,7 @@ class MFIPDst(MFField): def __init__(self, header, value, mask=None): super(MFIPDst, self).__init__(header, MFIPDst.pack_str) self.value = value + self.mask = mask @classmethod def make(cls, header): |