i2pd-tools/baddie-detector/baddiefinder/util.py
2016-11-24 08:22:55 -05:00

17 lines
377 B
Python

def getaddress(info):
"""
get ip address from router info dict
"""
for addr in info.addrs:
opts = addr.options
if b'host' in opts:
h = opts[b'host']
if b':' not in h:
return h
def getcaps(info):
"""
extract router caps
"""
if b'caps' in info.options:
return info.options[b'caps']