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