コード例 #1
0
	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
コード例 #2
0
ファイル: prefix.py プロジェクト: benagricola/exabgp
	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
コード例 #3
0
ファイル: nlri.py プロジェクト: qoke/exabgp
 def __eq__(self, other):
     return \
      NLRI.__eq__(self,other) and \
      self.CODE == other.CODE and \
      self.pack() == other.pack()
コード例 #4
0
ファイル: nlri.py プロジェクト: szhong-jnpr/exabgp
	def __eq__ (self, other):
		return \
			NLRI.__eq__(self,other) and \
			self.CODE == other.CODE and \
			self.pack() == other.pack()
コード例 #5
0
ファイル: nlri.py プロジェクト: bopopescu/exabgp-1
 def __eq__(self, other):
     return NLRI.__eq__(self, other) and self.CODE == other.CODE