first initial working link for ptp and joining back and drawing the edge, also making use of old core icons to provide a basic look and feel, updated coloring to dark mode instead of info, seems to fit better

This commit is contained in:
Blake J. Harnden 2018-05-07 15:04:54 -07:00
parent b10c7fe502
commit 8e99af96a4
18 changed files with 1414 additions and 45 deletions

View file

@ -320,7 +320,9 @@ class IpPrefix(object):
addr = ""
prefix_endpoint = -1
print "stop condition: %s" % (-(self.addrlen >> 3) - 1)
for i in xrange(-1, -(self.addrlen >> 3) - 1, -1):
print "i: %s" % i
prefix_endpoint = i
addr = chr(ord(self.prefix[i]) | (tmp & 0xff)) + addr
tmp >>= 8