mirror of
https://github.com/PurpleI2P/i2pd-tools.git
synced 2025-03-22 00:59:09 +01:00
17 lines
377 B
Python
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']
|