Exemple #1
0
def formatIpAdrs(ipbytes):
    """
    Format IP address string from IP addre4ss bytes
    """
    # return "%d.%d.%d.%d" % ipbytes
    return formatIntList(ipbytes,".")
Exemple #2
0
def formatIpAdrs(ipbytes):
    """
    Format IP address string from IP addre4ss bytes
    """
    # return "%d.%d.%d.%d" % ipbytes
    return formatIntList(ipbytes,".")
Exemple #3
0
def formatMacAdrs(macbytes,sep=":"):
    """
    Format MAC address as colon-separated hexadecimals for webBrick command
    """
    return formatIntList(macbytes, sep, formatInt("%02X"))
Exemple #4
0
def formatMacAdrs(macbytes,sep=":"):
    """
    Format MAC address as colon-separated hexadecimals for webBrick command
    """
    return formatIntList(macbytes, sep, formatInt("%02X"))