本文整理汇总了Python中visual.label方法的典型用法代码示例。如果您正苦于以下问题:Python visual.label方法的具体用法?Python visual.label怎么用?Python visual.label使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类visual
的用法示例。
在下文中一共展示了visual.label方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: import visual [as 别名]
# 或者: from visual import label [as 别名]
def __init__(self, nquery=1, target=''):
self._nquery = nquery # Number or traceroute queries
self._ntraces = 1 # Number of trace runs
self._iface = '' # Interface to use for trace
self._gw = '' # Default Gateway IPv4 Address for trace
self._netprotocol = 'TCP' # MTR network protocol to use for trace
self._target = target # Session targets
self._exptrg = [] # Expanded Session targets
self._host2ip = {} # Target Host Name to IP Address
self._ip2host = {} # Target IP Address to Host Name
self._tcnt = 0 # Total Trace count
self._tlblid = [] # Target Trace label IDs
self._res = [] # Trace Send/Receive Response Packets
self._ures = [] # Trace UnResponse Sent Packets
self._ips = {} # Trace Unique IPv4 Addresses
self._hops = {} # Traceroute Hop Ranges
self._rt = [] # Individual Route Trace Summaries
self._ports = {} # Completed Targets & Ports
self._portsdone = {} # Completed Traceroutes & Ports
self._rtt = {} # Round Trip Times (msecs) for Trace Nodes
self._unknownlabel = incremental_label('"Unk%i"')
self._asres = conf.AS_resolver # Initial ASN Resolver
self._asns = {} # Found AS Numbers for the MTR session
self._asds = {} # Associated AS Number descriptions
self._unks = {} # Unknown Hops ASN IP boundaries
self._graphdef = None
self._graphasres = 0
self._graphpadding = 0
#
# Get the protocol name from protocol integer value.
#
# proto - Protocol integer value.
#
# Returns a string value representing the given integer protocol.
示例2: __init__
# 需要导入模块: import visual [as 别名]
# 或者: from visual import label [as 别名]
def __init__(self, nquery = 1, target = ''):
self._nquery = nquery # Number or traceroute queries
self._ntraces = 1 # Number of trace runs
self._iface = '' # Interface to use for trace
self._gw = '' # Default Gateway IPv4 Address for trace
self._netprotocol = 'TCP' # MTR network protocol to use for trace
self._target = target # Session targets
self._exptrg = [] # Expanded Session targets
self._host2ip = {} # Target Host Name to IP Address
self._ip2host = {} # Target IP Address to Host Name
self._tcnt = 0 # Total Trace count
self._tlblid = [] # Target Trace label IDs
self._res = [] # Trace Send/Receive Response Packets
self._ures = [] # Trace UnResponse Sent Packets
self._ips = {} # Trace Unique IPv4 Addresses
self._hops = {} # Traceroute Hop Ranges
self._rt = [] # Individual Route Trace Summaries
self._ports = {} # Completed Targets & Ports
self._portsdone = {} # Completed Traceroutes & Ports
self._rtt = {} # Round Trip Times (msecs) for Trace Nodes
self._unknownlabel = incremental_label('"Unk%i"')
self._asres = conf.AS_resolver # Initial ASN Resolver
self._asns = {} # Found AS Numbers for the MTR session
self._asds = {} # Associated AS Number descriptions
self._unks = {} # Unknown Hops ASN IP boundaries
self._graphdef = None
self._graphasres = 0
self._graphpadding = 0
#
# Get the protocol name from protocol integer value.
#
# proto - Protocol integer value.
#
# Returns a string value representing the given integer protocol.