mirror of
https://github.com/PurpleI2P/i2pd-tools.git
synced 2025-02-13 08:17:39 +01:00
16 lines
325 B
Python
16 lines
325 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:
|
||
|
return opts[b'host']
|
||
|
|
||
|
def getcaps(info):
|
||
|
"""
|
||
|
extract router caps
|
||
|
"""
|
||
|
if b'caps' in info.options:
|
||
|
return info.options[b'caps']
|