def __eq__ (self, other): return \ NLRI.__eq__(self,other) and \ self.CODE == other.CODE and \ self.rd == other.rd and \ self.etag == other.etag and \ self.ip == other.ip and \ self.iplen == other.iplen
def __eq__(self, other): return \ NLRI.__eq__(self,other) and \ self.CODE == other.CODE and \ self.pack() == other.pack()
def __eq__ (self, other): return \ NLRI.__eq__(self,other) and \ self.CODE == other.CODE and \ self.pack() == other.pack()
def __eq__(self, other): return NLRI.__eq__(self, other) and self.CODE == other.CODE