本文整理汇总了Python中scapy.automaton.ATMT.receive_condition方法的典型用法代码示例。如果您正苦于以下问题:Python ATMT.receive_condition方法的具体用法?Python ATMT.receive_condition怎么用?Python ATMT.receive_condition使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类scapy.automaton.ATMT
的用法示例。
在下文中一共展示了ATMT.receive_condition方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: receive_offer
# 需要导入模块: from scapy.automaton import ATMT [as 别名]
# 或者: from scapy.automaton.ATMT import receive_condition [as 别名]
def receive_offer(self, pkt):
"""Receive offer on SELECTING state."""
logger.debug("C2. Received OFFER?, in SELECTING state.")
if isoffer(pkt):
logger.debug("C2: T, OFFER received")
self.offers.append(pkt)
if len(self.offers) >= MAX_OFFERS_COLLECTED:
logger.debug("C2.5: T, raise REQUESTING.")
self.select_offer()
raise self.REQUESTING()
logger.debug("C2.5: F, raise SELECTING.")
raise self.SELECTING()
# same as:, but would can not be overloaded
# @ATMT.receive_condition(RENEWING)
# @ATMT.receive_condition(REBINDING)
示例2: receive_ack_requesting
# 需要导入模块: from scapy.automaton import ATMT [as 别名]
# 或者: from scapy.automaton.ATMT import receive_condition [as 别名]
def receive_ack_requesting(self, pkt):
"""Receive ACK in REQUESTING state."""
logger.debug("C3. Received ACK?, in REQUESTING state.")
if self.process_received_ack(pkt):
logger.debug("C3: T. Received ACK, in REQUESTING state, "
"raise BOUND.")
raise self.BOUND()
# same as:, but would can not be overloaded
# @ATMT.receive_condition(RENEWING)
# @ATMT.receive_condition(REBINDING)