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